This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chrome编写自定义插件屏蔽github搜索结果 | |
chrome安装adblock ultimate这个插件 https://chrome.google.com/webstore/detail/adblocker-ultimate/ohahllgiabjaoigichmmfljhkcfikeof | |
规则例子 github.com##div[data-testid="results-list"] > div:-abp-has(a:-abp-contains(cirosantilli)) | |
## 开始 | |
div[data-testid="results-list"] div选择器 | |
> div 子div | |
:-abp-has() 如果括号里的规则为true则匹配当前元素 |