-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.1 KB
/
Copy pathmanifest.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "1.2.6",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"permissions": [
"storage",
"scripting"
],
"chrome_url_overrides": {
"newtab": "./pages/index_new_tab/index_new_tab.html"
},
"action": {
"default_popup": "./pages/popup/popup.html",
"default_title": "tabPureHome"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": [
"./common/config.js", "./common/language.js", "./common/md5.js", "./common/func.js",
"./content/dom_a_target.js", "./content/dom_insert_css.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "./static/appicon-16.png",
"32": "./static/appicon-32.png",
"48": "./static/appicon-48.png",
"128": "./static/appicon-128.png"
},
"minimum_chrome_version": "143.0",
"browser_specific_settings": {
"gecko": {
"id": "tabpurehome@datathink.top",
"strict_min_version": "143.0",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}