-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
35 lines (35 loc) · 915 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
32
33
34
35
{
"manifest_version": 2,
"name": "Margatsni - Instagram Downloader",
"description": "Easily download high quality photos and videos from Instagram. Everything is just a click away.",
"version": "2.66",
"background": {
"scripts": ["background.js"],
"persistent": false,
"run_at": "document_end"
},
"page_action": {
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"https://www.instagram.com/*",
"declarativeContent"
],
"content_scripts": [
{
"matches": ["https://www.instagram.com/*"],
"js": ["jquery-2.2.4.min.js", "jszip.min.js", "FileSaver.min.js", "content.js"],
"run_at" : "document_end"
}
],
"short_name" : "Margatsni",
"web_accessible_resources": ["download_black.png", "download_white.png"]
}