-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 965 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 965 Bytes
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
{
"name": "EthereumTwitterScamBotBlocker Extensions",
"description" : "Ethereum Twitter ScamBot Blocker Extension can mark scam tweets red or just hide them.",
"author": "Paul Mizel",
"version": "1.0",
"icons": {
"16": "extension-16x16.png",
"48": "extension-48x48.png",
"128": "extension-128x128.png" },
"permissions": [
"http://twitter.com/","https://twitter.com/","https://github.com/","tabs","activeTab","storage",
"http://*/",
"https://*/"
],
"content_security_policy":"script-src 'self' https://apis.google.com; object-src 'self'",
"browser_action": {
"default_popup": "options.html",
"default_icon": "extension-16x16.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"twitter.json"
],
"content_scripts": [
{
"matches": ["http://www.twitter.com/*",
"https://twitter.com/*"],
"js": ["jquery.js", "contentScript.js"],
"run_at": "document_end"
}
]
}