Instab

Open and save Instagram photos, videos, stories and reels.

Wat is Instab?

Instab is een Chrome-extensie ontwikkeld door Alan Dours, en de belangrijkste functie is "Open and save Instagram photos, videos, stories and reels.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Instab

Download Instab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Open, save and backup your Instagram posts, stories and reels                    

Basisinformatie over de Extensie

Naam Instab Instab
ID lgainibigpieikbapnhjkikfpapilcjb
Officiële URL https://chromewebstore.google.com/detail/instab/lgainibigpieikbapnhjkikfpapilcjb
Beschrijving Open and save Instagram photos, videos, stories and reels.
Bestandsgrootte 17.24 KB
Aantal Installaties 8,766
Huidige Versie 1.7.1
Laatst Bijgewerkt 2022-06-11
Publicatiedatum 2019-07-19
Beoordeling 3.91/5 Totaal 22 Beoordelingen
Ontwikkelaar Alan Dours
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/alandours/instab
Ondersteunde Talen 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"
            ]
        }
    ]
}