insta-d

adds a download link to instagram pages

insta-d là gì?

insta-d là một tiện ích mở rộng Chrome được phát triển bởi moldy530, và tính năng chính của nó là "adds a download link to instagram pages".

Ả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 insta-d

Tải xuống các tệp mở rộng insta-d 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

                        Simple extension that allows you to download instagram images as you browse them.

Just click on an image to open up its modal on someone's feed and click the download icon next to the share icon and it will download the highest quality available.                    

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

Tên insta-d insta-d
ID bbofjkmnliejmigcepfilhpigbpnghdg
URL Chính Thức https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg
Mô tả adds a download link to instagram pages
Kích Thước Tệp 25.93 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-01-30
Ngày Phát Hành 2019-01-30
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển moldy530
Loại Thanh Toán free
Trang Web Mở Rộng https://www.github.com/moldy530/insta-d
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "insta-d",
    "description": "adds a download link to instagram pages",
    "version": "1.0.2",
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "64": "images\/icon_64.png"
        },
        "default_title": "insta-d"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    }
}