-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 892 Bytes
/
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
{
"manifest_version": 2,
"name": "YouTube Repeater",
"description": "Repeat your YouTube favorite video for thousand times",
"version": "1.0",
"author": "Vivek S",
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "YouTube Repeater",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"http://youtube.com/*",
"https://youtube.com/*",
"http://www.youtube.com/*",
"https://www.youtube.com/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"tabs",
"storage"
]
}