forked from wseagar/eight-dollars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.v2.json
35 lines (35 loc) · 910 Bytes
/
manifest.v2.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
{
"manifest_version": 2,
"name": "Eight Dollars",
"version": "1.4",
"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/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
"script.js"
],
"permissions": [
"storage"
],
"browser_action": {
"default_icon": "./assets/32.png",
"default_title": "Eight-Dollars",
"default_popup": "options/options.html"
}
}