Automatically filter [csdn] entries in search engine query results (such as Baidu, Bing, etc...)
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_pluginTitle__",
"version": "1.0.0",
"default_locale": "zh_CN",
"description": "__MSG_pluginDesc__",
"homepage_url": "https://github.com/LeifHwang/BrowserEx.cleanup_csdn",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"minimum_chrome_version": "61",
"permissions": [
"storage"
],
"options_page": "pages/options.html",
"content_scripts": [
{
"matches": [
"https://www.baidu.com/*"
],
"js": [
"js/contentScript/baidu.js"
]
},
{
"matches": [
"https://cn.bing.com/*",
"https://www.bing.com/*"
],
"js": [
"js/contentScript/bing.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}