-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
30 lines (30 loc) · 881 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
{
"manifest_version": 2,
"name": "Maximize Flash",
"version" : "1.3",
"description": "Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.",
"author": "Scott Glajch",
"background": {
"scripts": [ "lodash.min.js", "background.js" ]
},
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"js": [
"jquery-1.11.0.min.js",
"jquery.important.js",
"lodash.min.js",
"maximize_flash.js"
],
"all_frames": true
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"page_action": {
"default_icon": "maximizeFlash.png",
"default_title": "Maximize Flash"
},
"permissions": [
"tabs"
]
}