MkQtS
MkQtS
How about showing most common fields like "title, user name, password, url, notes", then add an "*Other fields*" option and generalize other left fields to *Other fields*?
EasyPrivacy中的`/bili-collect.`会导致此问题 https://github.com/easylist/easylist/blob/5259f1a01799547037aa8fe0581f93ab9215bdc4/easyprivacy/easyprivacy_general.txt#L989 EasyList China中修复了这一问题 https://github.com/easylist/easylistchina/commit/c23db26f68d137404dd41e843e11b01740bbaab2 应该与ADgk无关。
Unsplash提供了[开发者文档](https://unsplash.com/documentation),需要注册以后获取Unsplash的Access Key,然后就可以使用Unsplash的api了
试了一下,可以直接curl`source.unsplash.com`得到图片链接(不加`-L`不会重定向),不需要Unsplash的Key 比如`curl "https://source.unsplash.com/random"`或者`curl "https://source.unsplash.com/collection/562095"` 得到一个这样的结果 ```html You are being redirected. ``` 用sed处理一下,可以得到这种比较理想的链接:`https://images.unsplash.com/photo-1489176876421-3b720db0fb3d?fm=jpg&w=1920&h=1080` 大概这样 ```shell curl -sS "https://source.unsplash.com/collection/562095" \ | sed -E 's#^.*href=\"([^?]+)\?.*$#\1?fm=jpg\&w=1920\&h=1080#' ```
Some domains are missing. AFAIK, `bilivideo.cn` for *Bilibili* and `weibocdn.com` for *Weibo*.
sing-box 的配置是 json 格式,要匹配`doubleclick.net`及其子域名,对于 sing-box 1.9.0 之前的版本,是这样的: ```json { "version": 1, "rules": [ { "domain": [ "doubleclick.net" ] }, { "domain_suffix": [ ".doubleclick.net" ] } ] } ``` sing-box 1.9.0...
> Parsing yaml in shell will be unfun How about using [yq](https://github.com/openwrt/packages/blob/master/utils/yq/Makefile)?
Thanks for the fix, it works. However, the same issue still exists in the password generator. 
 大小还是不一致😂
sing-box 在 1.10.0-alpha.25 添加了 AdGuard 域名规则支持,可以将 `anti-ad-adguard.txt` 编译为二进制 rule-set(`anti-ad-easylist.txt` 有几条使用正则表达式的规则,会被 sing-box 忽略) ```shell sing-box rule-set convert --type adguard anti-ad-adguard.txt ``` 可以直接用这个方法让 anti-ad 原地支持 sing-box。不过由 adguard list 编译出的 rule-set 设置了更高的版本号,低于 1.10.0-alpha.25...