-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmanifest.json
31 lines (29 loc) · 893 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "UltraWide Video",
"version": "1.3.1",
"manifest_version": 2,
"description": "Allows wider than average screens (eg.21:9) to play online video content and fit the screen properly in fullscreen mode.",
"icons": {
"128": "icon.png"
},
"permissions": [
"tabs",
"storage"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["Jquery/jquery-2.1.3.min.js","Jquery/jquery.hotkeys.js","Jquery/attrchange.js","Jquery/jquery.fullscreen.js","myscript.js"],
"css": ["style.css"]
}
],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "browseraction.png",
"default_title": "UltraWide Video",
"default_popup":"popup.html"
}
}