forked from pjzzz/iScroll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (27 loc) · 715 Bytes
/
manifest.json
File metadata and controls
33 lines (27 loc) · 715 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
33
{
"manifest_version": 2,
"name": "iScroll",
"version": "2.0",
"description" : "A quick way to recognise gestures.",
"icons" : {
"128" : "icon128.png",
"48" : "icon64.png",
"16" : "icon16.png"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_title": "iScroll",
"default_popup": "browser-action/popup.html"
},
"content_scripts": [{
"css": [
"styles.css"
],
"js": ["jquery/jquery.min.js","opencv.js","speech.js", "content-script.js"],
"matches": ["<all_urls>"]
}],
"permissions": ["tabs", "<all_urls>"]
}