Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Instagram Posts Downloader ",
"version": "1.0",
"description": "Use this extension to Download single or multiple Instagram posts from any profile you can view. ",
"permissions": [
"tabs",
"downloads",
"notifications"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "Instagram Posts Downloader",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.instagram.com\/*"
],
"js": [
"jszip.min.js",
"content.js"
]
}
]
}