-
Notifications
You must be signed in to change notification settings - Fork 69
/
manifest.json
34 lines (34 loc) · 1008 Bytes
/
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
{
"manifest_version": 3,
"name": "Eight Dollars",
"version": "2.0",
"description": "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.",
"icons": {
"16": "./assets/16.png",
"32": "./assets/32.png",
"48": "./assets/48.png",
"256": "./assets/256.png",
"512": "./assets/512.png"
},
"content_scripts": [
{
"matches": ["https://twitter.com/*", "https://mobile.twitter.com/*", "https://x.com/*", "https://mobile.x.com/*"],
"js": ["content.js"]
}
],
"web_accessible_resources": [
{
"resources": ["script.js", "data/verified.txt"],
"matches": ["https://twitter.com/*", "https://mobile.twitter.com/*", "https://x.com/*", "https://mobile.x.com/*"]
}
],
"action": {
"default_icon": {
"16": "./assets/16.png",
"32": "./assets/32.png"
},
"default_title": "Eight Dollars - Options",
"default_popup": "options/options.html"
},
"permissions": ["storage"]
}