-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.json
71 lines (71 loc) · 1.65 KB
/
manifest.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"manifest_version": 3,
"name": "LinkOff - Filter and Customizer for LinkedIn™",
"short_name": "LinkOff",
"author": "Noah Jelich",
"version": "1.8.1",
"description": "LinkOff cleans and customizes LinkedIn. It filters out the junk, leaving behind the posts and page elements that you want to see.",
"browser_specific_settings": {
"gecko": {
"id": "{dc212c1b-5965-471e-ac34-56c908222386}",
"strict_min_version": "58.0"
},
"gecko_android": {
"id": "{dc212c1b-5965-471e-ac34-56c908222386}",
"strict_min_version": "58.0"
}
},
"icons": {
"16": "src/icons/icon16.png",
"48": "src/icons/icon48.png",
"128": "src/icons/icon128.png"
},
"background": {
"service_worker": "src/service_worker.js",
"scripts": [
"src/service_worker.js"
],
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/*"
],
"js": [
"src/content/content.js"
],
"css": [
"src/content/content.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"/src/icons/forbidden.svg",
"/src/index.js",
"/src/utils.js",
"/src/constants.js",
"/src/features/feed.js",
"/src/features/general.js",
"/src/features/jobs.js",
"/src/features/misc.js",
"/src/features/message.js"
],
"matches": [
"https://www.linkedin.com/*"
]
}
],
"action": {
"default_popup": "src/popup/popup.html"
},
"host_permissions": [
"https://www.linkedin.com/*"
],
"permissions": [
"storage"
]
}