Instab
Open and save Instagram photos, videos, stories and reels.
What is Instab?
Instab is a Chrome extension developed by Alan Dours, and its main feature is "Open and save Instagram photos, videos, stories and reels.".
Extension Screenshots
Download Instab Extension CRX File
Download Instab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Open, save and backup your Instagram posts, stories and reels
Extension Basic Information
Name | Instab |
ID | lgainibigpieikbapnhjkikfpapilcjb |
Official URL | https://chromewebstore.google.com/detail/instab/lgainibigpieikbapnhjkikfpapilcjb |
Description | Open and save Instagram photos, videos, stories and reels. |
File Size | 17.24 KB |
Installation Count | 8,766 |
Current Version | 1.7.1 |
Last Updated | 2022-06-11 |
Publish Date | 2019-07-19 |
Rating | 3.91/5 Total 22 Ratings |
Developer | Alan Dours |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/alandours/instab |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instab", "description": "Open and save Instagram photos, videos, stories and reels.", "version": "1.7.1", "permissions": [ "downloads", "storage" ], "icons": { "16": "icons\/ig-16.png", "32": "icons\/ig-32.png", "48": "icons\/ig-48.png" }, "browser_action": { "default_icon": "icons\/ig-48.png", "default_title": "Instab settings", "default_popup": "html\/settings.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.instagram.com\/*" ], "js": [ "js\/main.js" ], "css": [ "css\/instab.css" ] }, { "matches": [ "*:\/\/*.instagram.com\/p\/*", "*:\/\/*.instagram.com\/*?instab=true", "*:\/\/*.instagram.com\/*&instab=true" ], "js": [ "js\/post.js" ] }, { "matches": [ "*:\/\/*.instagram.com\/*" ], "exclude_globs": [ "*instagram.com\/p\/*" ], "js": [ "js\/feed.js" ] }, { "run_at": "document_start", "matches": [ "*:\/\/*.instagram.com\/*?instab=true", "*:\/\/*.instagram.com\/*&instab=true" ], "js": [ "js\/userAgent.js" ], "css": [ "css\/videoTab.css" ] } ] } |