Instab

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

Instabとは何ですか?

InstabはAlan Doursによって開発されたChromeの拡張機能で、その主な機能は「Open and save Instagram photos, videos, stories and reels.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Instab拡張機能のCRXファイルをダウンロード

Instab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Instab Instab
ID lgainibigpieikbapnhjkikfpapilcjb
公式URL https://chromewebstore.google.com/detail/instab/lgainibigpieikbapnhjkikfpapilcjb
説明 Open and save Instagram photos, videos, stories and reels.
ファイルサイズ 17.24 KB
インストール数 8,766
現在のバージョン 1.7.1
最終更新日 2022-06-11
公開日 2019-07-19
評価 3.91/5 合計 22 レビュー
開発者 Alan Dours
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/alandours/instab
対応言語 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"
            ]
        }
    ]
}