-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 844 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
{
"description": "Shows a share button in youtube video page, to share video URL of current time. See https://github.com/HarshRohila/YouTubeHelper",
"manifest_version": 2,
"name": "YouTube Helper",
"version": "1.1",
"homepage_url": "https://github.com/HarshRohila/YouTubeHelper",
"icons": {
"48": "icons/beasts-48.png"
},
"permissions": [
"activeTab",
"*://*.youtube.com/*"
],
"browser_action": {
"default_icon": "icons/beasts-32.png",
"theme_icons": [
{
"light": "icons/beasts-32-light.png",
"dark": "icons/beasts-32.png",
"size": 32
}
],
"default_title": "YouTube Helper"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"scripts": [
"backgroud_scripts/background.js"
]
}
}