-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·41 lines (41 loc) · 1.07 KB
/
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
35
36
37
38
39
40
41
{
"manifest_version": 2,
"name": "Fat tweet",
"version": "0.1.4.2",
"version_name": "0.1.4-beta",
"icons": {
"128": "img/128.png",
"64": "img/64.png",
"32": "img/32.png",
"16": "img/16.png"
},
"content_scripts": [
{
"matches": ["*://twitter.com/", "*://twitter.com/*"],
"js": [
"bower_components/jQuery/dist/jquery.min.js",
"js/FatTweet.class.js",
"js/init.js"
]
}
],
"permissions": [
"https://twitter.com/*",
"storage",
"tabs"
],
"browser_action": {
"default_title": "Fat tweet",
"default_icon": "img/32.png",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"bower_components/jQuery/dist/jquery.min.js",
"bower_components/html2canvas/build/html2canvas.min.js",
"bower_components/imagesloaded/imagesloaded.pkgd.min.js",
"js/FatTweet.class.js",
"img/*.png",
"img/*.svg",
"css/*.css"
]
}