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

从源头屏蔽Google广告加载

This commit is contained in:
2022-02-09 16:56:01 +08:00
parent b175506ab3
commit 39a4721dda
3 changed files with 66 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"
@@ -37,6 +38,15 @@
"css": [],
"run_at": "document_start"
},
{
"matches": [
"*://*/*"
],
"js": [
"assets/js/remove-google-ads/removeAds.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://blog.csdn.net/*"
@@ -47,6 +57,15 @@
],
"run_at": "document_start"
},
{
"matches": [
"*://www.it1352.com/*"
],
"js": [
"assets/js/expand-full-text/www.it1352.com.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://fanyi.qq.com/*"
@@ -122,8 +141,10 @@
"contextMenus",
"storage",
"webRequest",
"webRequestBlocking",
"tabs",
"activeTab",
"notifications"
"notifications",
"<all_urls>"
]
}