Skip to content

Commit

Permalink
Version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HuiiBuh committed Jun 24, 2019
1 parent 685d026 commit a2c0515
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 80 deletions.
70 changes: 34 additions & 36 deletions chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,36 @@
{
"manifest_version": 2,
"name": "Instagram Downloader",
"version": "1.6.1",
"icons": {
"48": "icons/instagram.png"
},
"web_accessible_resources": [
"icons/download.png",
"icons/download_multiple.png"
],
"permissions": [
"downloads",
"background"
],
"background": {
"page": "html/background.html"
},
"content_scripts": [
{
"matches": [
"*://*.instagram.com/*"
],
"js": [
"js/button.js",
"js/downloadAll.js",
"js/hoverable.js",
"js/downloadHomePage.js",
"js/downloadStory.js",
"js/profilePicture.js",
"js/main.js"
],
"css": [
"css/main.css"
]
}
]
"manifest_version": 2,
"name": "Instagram Downloader",
"version": "2",
"icons": {
"48": "icons/instagram.png"
},
"web_accessible_resources": [
"icons/download.png",
"icons/download_multiple.png"
],
"permissions": [
"downloads",
"background"
],
"background": {
"page": "html/background.html"
},
"content_scripts": [{
"matches": [
"*://*.instagram.com/*"
],
"js": [
"js/button.js",
"js/downloadAll.js",
"js/hoverable.js",
"js/downloadHomePage.js",
"js/downloadStory.js",
"js/profilePicture.js",
"js/main.js"
],
"css": [
"css/main.css"
]
}]
}
86 changes: 42 additions & 44 deletions firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,44 @@
{
"manifest_version": 2,
"name": "Instagram Downloader",
"version": "1.6.1",
"icons": {
"48": "icons/instagram.png"
},
"web_accessible_resources": [
"icons/download.png",
"icons/download_multiple.png"
],
"permissions": [
"downloads"
],
"background": {
"scripts": [
"js/download.js",
"js/jszip-utils.min.js",
"js/jszip.min.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.instagram.com/*"
],
"js": [
"js/button.js",
"js/hoverable.js",
"js/downloadAll.js",
"js/downloadHomePage.js",
"js/downloadStory.js",
"js/profilePicture.js",
"js/main.js"
],
"css": [
"css/main.css"
]
"manifest_version": 2,
"name": "Instagram Downloader",
"version": "2",
"icons": {
"48": "icons/instagram.png"
},
"web_accessible_resources": [
"icons/download.png",
"icons/download_multiple.png"
],
"permissions": [
"downloads"
],
"background": {
"scripts": [
"js/download.js",
"js/jszip-utils.min.js",
"js/jszip.min.js"
]
},
"content_scripts": [{
"matches": [
"*://*.instagram.com/*"
],
"js": [
"js/button.js",
"js/hoverable.js",
"js/downloadAll.js",
"js/downloadHomePage.js",
"js/downloadStory.js",
"js/profilePicture.js",
"js/main.js"
],
"css": [
"css/main.css"
]
}],
"applications": {
"gecko": {
"id": "[email protected]"
}
}
],
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}
}

0 comments on commit a2c0515

Please sign in to comment.