-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
38 lines (38 loc) · 1.35 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
35
36
37
38
{
"name": "Emmet Re:view",
"description": "Fast and easy way to test your responsive design in multiple viewports",
"short_name": "Re:view",
"version": "2.0.0",
"permissions": [
"activeTab",
"storage",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"page": "background.html"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*", "file:///*"],
"js": ["scripts/content-script.js"],
"run_at": "document_start",
"all_frames": true
}],
"browser_action": {
"default_title": "Emmet Re:View",
"default_icon": {
"38": "icons/browser-action.png"
}
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://www.google-analytics.com https://*.carbonads.com https://xrxbcfk.misosoup.io; object-src 'self'",
"web_accessible_resources": ["proxy"],
"manifest_version": 2,
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsvIV42ru/pnDPEiGb5BJwg9ZfpjgtvmKTX9rGEsJpaWkTwxBJ9Eypb5S2TVMYzuiddUQi2T9KoMGO35EEyV6cBl4AXK2s9wXFs1CcnrXkKBQXa4DvcoaPy06gMTCcthPL0A58hraRPjFbpFYI2CKPQQzqfEf/QXyC06vtknh4Wn+9MmRZQBvev9YuUgos6I4fwiL3rkeeuKPC1UvSVPOh/tJsIPpT/MXlsV+pe71TNyATo7ArTKDa+aa+0bToVlLvXJkxiyVzKLXt1yzT8cFK1O8134f8gfKl7d/DSikfrGxuqPde0ou8uT/uUpHwlfayzpr8YFC/htz5W7RJ45ReQIDAQAB"
}