Instab
Open and save Instagram photos, videos, stories and reels.
Was ist Instab?
Instab ist eine Chrome-Erweiterung, die von Alan Dours entwickelt wurde, und ihr Hauptmerkmal ist "Open and save Instagram photos, videos, stories and reels.".
Erweiterungsscreenshots
Instab-Erweiterungs-CRX-Datei herunterladen
Laden Sie Instab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Open, save and backup your Instagram posts, stories and reels
Grundlegende Informationen zur Erweiterung
Name | Instab |
ID | lgainibigpieikbapnhjkikfpapilcjb |
Offizielle URL | https://chromewebstore.google.com/detail/instab/lgainibigpieikbapnhjkikfpapilcjb |
Beschreibung | Open and save Instagram photos, videos, stories and reels. |
Dateigröße | 17.24 KB |
Installationsanzahl | 8,766 |
Aktuelle Version | 1.7.1 |
Letztes Update | 2022-06-11 |
Veröffentlichungsdatum | 2019-07-19 |
Bewertung | 3.91/5 Insgesamt 22 Bewertungen |
Entwickler | Alan Dours |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/alandours/instab |
Unterstützte Sprachen | 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" ] } ] } |