-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
28 lines (28 loc) · 954 Bytes
/
Copy pathmanifest.json
File metadata and controls
28 lines (28 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"manifest_version": 3,
"name": "TCC Override",
"version": "1.0.3",
"description": "A Chrome extension that automatically loads ads on Tiktok Ad Library, removes duplicate ads, filters to make product analysis faster and more efficient.",
"permissions": [ "scripting", "activeTab", "storage" ],
"host_permissions": [ "https://library.tiktok.com/*" ],
"action": {
"default_popup": "/src/popup/popup.html"
},
"icons": {
"16": "/assets/icons/tt_off_16.png",
"166": "/assets/icons/tt_off_16.png",
"32": "/assets/icons/tt_off_32.png",
"48": "/assets/icons/tt_off_48.png",
"128": "/assets/icons/tt_off_128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [ "https://library.tiktok.com/*" ],
"css": [ "src/block/blockButton.css" ],
"js": [ "src/scripts/viewMore.js", "src/scripts/injectFilter.js", "src/block/blockButton.js" ]
}
]
}