-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest_edge.json
38 lines (33 loc) · 928 Bytes
/
manifest_edge.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
{
"manifest_version": 2,
"name": "Mini YouTube",
"author": "Mini YouTube contributors",
"description": "Makes YouTube video float while you're reading/writing comments so you can do both at the same time.",
"version": "1.2.23",
"minimum_edge_version": "38.14393",
"icons": { "16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png" },
"content_scripts": [{
"matches": ["https://www.youtube.com/*"],
"css": ["floatVideo.css"],
"js": ["jquery-2.1.3.min.js", "floatVideo.js"]
}],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_title": "Mini YouTube",
"default_icon": {
"19": "images/icon128.png",
"38": "images/icon128.png",
"128": "images/icon128.png"
},
"default_popup": "popup.html"
},
"permissions": [
"storage",
"tabs"
]
}