Instab
Open and save Instagram photos, videos, stories and reels.
Co to jest Instab?
Instab to rozszerzenie Chrome opracowane przez Alan Dours, a jego główną funkcją jest „Open and save Instagram photos, videos, stories and reels.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Instab
Pobierz pliki rozszerzeń Instab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Open, save and backup your Instagram posts, stories and reels
Podstawowe informacje o rozszerzeniu
Nazwa | Instab |
ID | lgainibigpieikbapnhjkikfpapilcjb |
Oficjalny URL | https://chromewebstore.google.com/detail/instab/lgainibigpieikbapnhjkikfpapilcjb |
Opis | Open and save Instagram photos, videos, stories and reels. |
Rozmiar pliku | 17.24 KB |
Liczba instalacji | 8,766 |
Aktualna Wersja | 1.7.1 |
Ostatnia Aktualizacja | 2022-06-11 |
Data Publikacji | 2019-07-19 |
Ocena | 3.91/5 Łącznie 22 Oceny |
Deweloper | Alan Dours |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/alandours/instab |
Obsługiwane Języki | 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" ] } ] } |