-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
34 lines (28 loc) · 1.02 KB
/
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
{
"name": "Video Title Adder",
"version": "1.4.4",
"description": "Preloads any YouTube links and appends the title of the video to the link in the referring page.",
"icons": { "32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png" },
"web_accessible_resources": [
"icons/embed.svg",
"icons/restricted.gif"
],
"content_scripts": [ {
"exclude_globs": [ "https://*.youtube.com/*", "https://youtube.com/*", "http://*.youtube.com/*", "http://youtube.com/*", "http://*.google.*/search\\?*" ],
"include_globs": [ "*" ],
"css": [ "jquery.qtip.min.css", "inject.css" ],
"js": [ "jquery.min.js", "jquery.qtip.min.js", "script.js" ],
"matches": [ "http://*/*", "https://*/*" ]
} ],
"permissions": [
"http://gdata.youtube.com/"
],
"manifest_version": 2,
"options_page": "options.html",
"background": {
"scripts": ["background.js"],
"persistent": false
}
}