-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
32 lines (32 loc) · 1011 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
{
"name": "Claw4Twitter",
"version": "1.0.2",
"manifest_version": 2,
"description" : "A sharp claw (i.e. Chrome Extension) for Larry (the Twitter Bird), which adds some utility to the twitter website user experience.",
"icons" : {"128":"claw.png"},
"browser_action": {
"default_icon": "coolicon.png",
"default_popup": "popup.html",
"permissions": ["http://jsonplaceholder.typicode.com/posts/1"]
},
"background": {
"scripts": ["background.js","jquery.js"],
"persistent": false
},
"content_scripts": [
{
"matches": [ "https://twitter.com/"],
"js": ["jquery.js","content.js"],
"css": ["framestyle.css"]
}
],
"web_accessible_resources": [
"iframe/hackbar.html",
"iframe/hackbar.css",
"iframe/taggle.css"
],
"content_security_policy": "script-src https://twitter.com/* ; object-src 'self'",
"permissions": [
"<all_urls>", "webNavigation"
]
}