forked from dkurucz/exscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 958 Bytes
/
manifest.json
File metadata and controls
42 lines (42 loc) · 958 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
34
35
36
37
38
39
40
41
42
{
"name" : "Visual Ex- Script for YouTube Looping",
"short_name" : "vexscript",
"version" : "1.0.0",
"manifest_version" : 2,
"description" : "Create multiple loops for YouTube videos!",
"homepage_url" : "http://github.com/dantony/exscript",
"icons" : {
"16" : "icons/icon16.png",
"19" : "icons/icon19.png",
"48" : "icons/icon48.png",
"128" : "icons/icon128.png"
},
"default_locale" : "en",
"background" : {
"page" : "src/bg/background.html"
},
"page_action" : {
"default_icon" : "icons/icon19.png",
"default_title" : "page action demo",
"default_popup" : "src/page_action/page_action.html"
},
"permissions" : [
"storage",
"tabs"
],
"content_scripts" : [{
"matches" : [
"https://www.youtube.com/*"
],
"css" : [
"js/jquery-ui-1.11.4/jquery-ui.min.css"
],
"js" : [
"js/jquery-2.1.4.min.js",
"js/jquery-ui-1.11.4/jquery-ui.min.js",
"js/exscript.js",
"src/inject/inject.js"
]
}
]
}