-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
manifest.json
37 lines (37 loc) · 1 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
{
"manifest_version": 3,
"name": "LinkOff - Filter and Customizer for LinkedIn™",
"short_name": "LinkOff",
"author": "Noah Jelich",
"version": "1.6.0",
"description": "LinkOff cleans and customizes LinkedIn. It filters out the junk, leaving behind the posts and page elements that you want to see.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"service_worker": "service_worker.js",
"scripts": ["service_worker.js"],
"type": "module"
},
"content_scripts": [
{
"matches": ["https://www.linkedin.com/*"],
"js": ["content/content.js"],
"css": ["content/content.css"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": ["icons/forbidden.svg"],
"matches": ["https://www.linkedin.com/*"]
}
],
"action": {
"default_popup": "popup/popup.html"
},
"host_permissions": ["https://www.linkedin.com/*"],
"permissions": ["storage"]
}