1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-07 16:35:15 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

Merge branch 'feat-remove-google-ads' into feat-advanced-search

This commit is contained in:
2022-02-09 18:26:19 +08:00
4 changed files with 75 additions and 1 deletions

View File

@@ -15,6 +15,7 @@
"scripts": [
"assets/js/lib/jquery.min.js",
"assets/js/background.js",
"assets/js/remove-google-ads/background_preventAdsScript.js",
"assets/html/pomodoro/background.js",
"assets/js/advanced-search/background.js",
"assets/html/screenshot/background.js"
@@ -38,6 +39,17 @@
"run_at": "document_start"
},
{
"_______commit": "屏蔽Google广告模块",
"matches": [
"*://*/*"
],
"js": [
"assets/js/remove-google-ads/removeAds.js"
],
"run_at": "document_start"
},
{
"_______commit": "自动展开模块",
"matches": [
"*://blog.csdn.net/*"
],
@@ -48,6 +60,17 @@
"run_at": "document_start"
},
{
"_______commit": "自动展开模块",
"matches": [
"*://www.it1352.com/*"
],
"js": [
"assets/js/expand-full-text/www.it1352.com.js"
],
"run_at": "document_start"
},
{
"_______commit": "自动搜索模块",
"matches": [
"*://fanyi.qq.com/*",
"*://baike.baidu.com/*",
@@ -85,8 +108,10 @@
"contextMenus",
"storage",
"webRequest",
"webRequestBlocking",
"tabs",
"activeTab",
"notifications"
"notifications",
"<all_urls>"
]
}