-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
35 lines (34 loc) · 863 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
{
"manifest_version": 2,
"name": "Streamline",
"description": "Youtube custom speed controller",
"version": "1.0.0",
"author": "Daulatrao 'PRO7ON' Patil",
"content_scripts": [{
"matches": ["*://www.youtube.com/*"],
"js": ["injectedYoutube.js"]
}],
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"page_action": {
"default_icon": {
"16": "images/logo16.png",
"24": "images/logo24.png",
"32": "images/logo32.png",
"128": "images/logo128.png"
},
"default_title": "Youtube playback speed",
"default_popup": "popup.html"
},
"icons": {
"16": "images/logo16.png",
"24": "images/logo24.png",
"32": "images/logo32.png",
"128": "images/logo128.png"
},
"permissions": [
"activeTab", "tabs"
]
}