-
Notifications
You must be signed in to change notification settings - Fork 0
/
Firefox manifest.json
117 lines (117 loc) · 2.69 KB
/
Firefox 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"manifest_version": 2,
"name": "__MSG_ext_title__",
"short_name": "__MSG_ext_short_name__",
"version": "0.1.5.4",
"description": "__MSG_ext_description__",
"author": "furyu",
"default_locale": "en",
"icons": {
"16": "img/icon_16.png",
"19": "img/icon_19.png",
"48": "img/icon_48.png",
"128": "img/icon_128.png"
},
"permissions": [
"storage",
"*://*.twitter.com/*",
"*://pbs.twimg.com/*",
"*://video.twimg.com/*",
"*://*.cdn.vine.co/*"
],
"content_scripts": [
{
"matches": [
"*://twitter.com/*",
"*://tweetdeck.twitter.com/*",
"*://api.twitter.com/*",
"*://pbs.twimg.com/media/*",
"*://mobile.twitter.com/*"
],
"js": [
"js/browser_info.js",
"js/jquery.min.js",
"js/twitter-oauth/sha1.js",
"js/twitter-oauth/oauth.js",
"js/twitter-oauth/twitter-api.js",
"js/session.js"
],
"run_at": "document_start",
"all_frames": false
},
{
"matches": [
"*://twitter.com/*",
"*://tweetdeck.twitter.com/*",
"*://pbs.twimg.com/media/*",
"*://mobile.twitter.com/*"
],
"js": [
"js/decimal.min.js",
"js/jszip.min.js",
"js/init.js",
"js/timeline.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"*://twitter.com/*",
"*://mobile.twitter.com/*"
],
"js": [
"js/main_react.user.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"*://tweetdeck.twitter.com/*"
],
"js": [
"js/main_tweetdeck.user.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"background": {
"scripts": [
"js/background.js"
],
"persistent": true
},
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"browser_action": {
"default_icon": "img/icon_16.png",
"default_title": "__MSG_ext_title__",
"default_popup": "html/options.html"
},
"commands": {
"bulk_download": {
"suggested_key": {
"default": "Shift+Alt+D",
"mac": "Shift+Alt+D"
},
"description": "__MSG_BULK_DOWNLOAD__"
},
"bulk_download_likes": {
"suggested_key": {
"default": "Shift+Alt+L",
"mac": "Shift+Alt+L"
},
"description": "__MSG_BULK_DOWNLOAD_LIKES__"
}
},
"applications": {
"gecko": {
"id": "{8b344d1d-265c-4d48-8418-0b522359bad2}",
"strict_min_version": "57.0a1"
}
}
}