-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (46 loc) · 1.16 KB
/
manifest.json
File metadata and controls
53 lines (46 loc) · 1.16 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
45
46
47
48
49
50
51
52
53
{
"manifest_version": 3,
"name": "What's that link?",
"version": "1.0",
"description": "This extension is used to check a link in your webpage and provides a summary of the webpage it leads to.",
"action": {
"default_popup": "popup.html"
},
"permissions": [
"contextMenus",
"scripting",
"activeTab",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"16": "icons/link-check-16.png",
"32": "icons/link-check-32.png",
"48": "icons/link-check-48.png",
"128": "icons/link-check-128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"content/parserScript.js",
"content/popupScript.js",
"content/bookmarkScript.js",
"content/popupHTML.js",
"content/urlRatings.js"
]
}
],
"web_accessible_resources": [
{
"resources": ["js/marked.min.js"],
"matches": ["<all_urls>"]
}
]
}