-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
78 lines (78 loc) · 1.61 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
72
73
74
75
76
77
78
{
"name": "SwearJar",
"description": "Highlight words you don't want to use in social media post composers",
"version": "0.0.1",
"manifest_version": 3,
"default_locale": "en",
"background": {
"service_worker": "oninstall.js"
},
"content_scripts": [
{
"matches": [
"https://twitter.com/*"
],
"js": [
"content_scripts/shared.js",
"content_scripts/chrome/sj_twitter.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://*.facebook.com/*"
],
"js": [
"content_scripts/shared.js",
"content_scripts/chrome/sj_facebook.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://*.linkedin.com/*"
],
"js": [
"content_scripts/shared.js",
"content_scripts/chrome/sj_linkedin.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://*.instagram.com/*"
],
"js": [
"content_scripts/shared.js",
"content_scripts/chrome/sj_instagram.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"activeTab"
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": [
"3rdparty/iro.min.js",
"audio/*",
"content_scripts/shared.js"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "/images/SwearJar16.png",
"32": "/images/SwearJar32.png",
"48": "/images/SwearJar48.png",
"128": "/images/SwearJar128.png"
}
}