-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
54 lines (54 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "__MSG_EXTENSION_NAME__"
, "short_name": "__MSG_EXTENSION_SHORTNAME__"
, "version": "1.0.1"
, "manifest_version": 2
, "description": "__MSG_EXTENSION_DESCRIPTION__"
, "icons": {
"16": "images/icon16.png"
, "48": "images/icon48.png"
, "128": "images/icon128.png"
}
, "default_locale": "en"
, "offline_enabled": true
, "background": {
"scripts": [
"js/third_party/whammy.js"
, "js/third_party/gifshot.min.js"
, "js/constants.js"
, "js/videoRecorder.js"
, "js/background.js"
]
}
, "options_page": "options.html"
, "browser_action": {
"default_icon": {
"19": "images/icon24.png"
, "38": "images/icon48.png"
}
, "default_title": "__MSG_BROWSER_ACTION_TITLE__"
, "default_popup": "popup.html"
}
, "content_scripts": [{
"matches": [ "<all_urls>" ]
, "css": [ "css/content_script.css" ]
, "js": [
"js/third_party/jquery-2.1.0.min.js"
, "js/constants.js"
, "js/content_script.js"
]
, "run_at": "document_idle"
}]
, "permissions": [
"activeTab"
, "tabs"
, "storage"
, "unlimitedStorage"
, "tabCapture"
, "<all_urls>"
]
, "web_accessible_resources": [
"images/*"
, "plugins/*"
]
}