-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 1.06 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
{
"name": "LinkedOut",
"version": "1.0",
"description": "Removes LinkedIn posts on your feed and replaces it with cute animals instead.",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/*"
],
"run_at": "document_start",
"all_frames": true,
"js": [
"block.js",
"clean.js"
]
}
],
"background": {
"page": "background.html",
"persistent": false
},
"browser_action": {
"default_popup": "settings/popup.html"
},
"options_page": "settings/options.html",
"icons": {
"16": "images/LinkedOut16.png",
"48": "images/LinkedOut48.png",
"128": "images/LinkedOut128.png"
},
"permissions": [
"tabs",
"storage"
],
"content_security_policy": "script-src 'self' https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js https://www.google-analytics.com https://www.googletagmanager.com https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'; connect-src 'self' wss://*.firebaseio.com;"
}