Instab

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

Instab là gì?

Instab là một tiện ích mở rộng Chrome được phát triển bởi Alan Dours, và tính năng chính của nó là "Open and save Instagram photos, videos, stories and reels.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Instab

Tải xuống các tệp mở rộng Instab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Instab Instab
ID lgainibigpieikbapnhjkikfpapilcjb
URL Chính Thức https://chromewebstore.google.com/detail/instab/lgainibigpieikbapnhjkikfpapilcjb
Mô tả Open and save Instagram photos, videos, stories and reels.
Kích Thước Tệp 17.24 KB
Số Lần Cài Đặt 8,766
Phiên Bản Hiện Tại 1.7.1
Cập Nhật Lần Cuối 2022-06-11
Ngày Phát Hành 2019-07-19
Đánh Giá 3.91/5 Tổng số 22 Đánh Giá
Nhà Phát Triển Alan Dours
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alandours/instab
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}