forked from pmarquees/ChromeIGStory
-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.json
39 lines (39 loc) · 1.01 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
39
{
"name": "Chrome IG Story",
"description": "View and download Instagram Stories from your browser.",
"version": "2.2.7",
"manifest_version": 2,
"background": {
"scripts": [
"js/event.js"
],
"persistent": true
},
"browser_action": {
"default_title": "Chrome IG Story",
"default_popup": "html/popup.html"
},
"permissions": [
"cookies",
"webRequest",
"webRequestBlocking",
"*://*.instagram.com/*",
"storage"
],
"content_scripts": [
{
"matches": ["*://*.instagram.com/*"],
"js": ["js/content.js"],
"css" : ["css/main.css"]
}
],
"web_accessible_resources": [
"js/*",
"css/*",
"img/*",
"html/*"
],
"icons": { "16": "img/icon-16.png", "128": "img/icon-128.png" },
"incognito": "split",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-3.0.1-min.gz.js 'unsafe-eval'; object-src 'self'"
}