Instab
Open and save Instagram photos, videos, stories and reels.
Cos'è Instab?
Instab è un'estensione di Chrome sviluppata da Alan Dours, e la sua funzione principale è "Open and save Instagram photos, videos, stories and reels.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Instab
Scarica i file di estensione Instab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Open, save and backup your Instagram posts, stories and reels
Informazioni di Base sull'Estensione
Nome | Instab |
ID | lgainibigpieikbapnhjkikfpapilcjb |
URL Ufficiale | https://chromewebstore.google.com/detail/instab/lgainibigpieikbapnhjkikfpapilcjb |
Descrizione | Open and save Instagram photos, videos, stories and reels. |
Dimensione del File | 17.24 KB |
Conteggio Installazioni | 8,766 |
Versione Corrente | 1.7.1 |
Ultimo Aggiornamento | 2022-06-11 |
Data di Pubblicazione | 2019-07-19 |
Valutazione | 3.91/5 Totale 22 Valutazioni |
Sviluppatore | Alan Dours |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/alandours/instab |
Lingue Supportate | 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" ] } ] } |