forked from Bihruze/x-reply
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
60 lines (60 loc) · 1.17 KB
/
manifest.json
File metadata and controls
60 lines (60 loc) · 1.17 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
54
55
56
57
58
59
60
{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.0",
"default_locale": "en",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
}
},
"permissions": [
"activeTab",
"scripting",
"storage",
"alarms",
"tabs"
],
"host_permissions": [
"*://twitter.com/*",
"*://x.com/*"
],
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"*://twitter.com/*",
"*://x.com/*"
],
"exclude_matches": [
"*://twitter.com/notifications",
"*://x.com/notifications"
],
"js": [
"content_script.js"
]
},
{
"matches": [
"*://twitter.com/notifications*",
"*://x.com/notifications*"
],
"js": [
"notifications.js"
]
}
]
}