-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathmanifest.json
29 lines (28 loc) · 951 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
{
"name": "Chrome IG Story",
"description": "Chrome extension that lets you view your friend's Instagram Stories in the browser.",
"version": "1.2",
"manifest_version": 2,
"background": {
"scripts": ["js/background.js"]
},
"permissions": [
"cookies",
"webRequest",
"webRequestBlocking",
"*://*.instagram.com/*"
],
"content_scripts": [
{
"matches": ["*://*.instagram.com/"],
"js": ["js/injectStoryTray.js", "js/jquery-3.1.0.min.js", "js/FileSaver.min.js", "js/jszip.min.js", "js/jszip-utils.min.js", "js/jquery.contextMenu.min.js", "js/photoswipe.min.js", "js/photoswipe-ui-default.min.js", "js/moment.min.js"],
"css" : ["css/main.css", "css/jquery.contextMenu.min.css", "css/photoswipe.css", "css/default-skin/default-skin.css"]
}
],
"web_accessible_resources": [
"html/photoswipe.html",
"js/*",
"css/*"
],
"icons": { "16": "icon-16.png", "128": "icon-128.png" }
}