GramGrabber

Copy the link to an Instagram image to your clipboard.

GramGrabber là gì?

GramGrabber là một tiện ích mở rộng Chrome được phát triển bởi emptyset, và tính năng chính của nó là "Copy the link to an Instagram image to your clipboard.".

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

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

                        - Visit a page on Instagram and click to view the larger image in the modal.

 - You can now Right Click and Select 'GramGrabber' from the Right Click Menu.

 - The Link to the image is now on your clipboard and ready to be pasted.                    

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

Tên GramGrabber GramGrabber
ID bpghmpfldmkldeehcccbgebkldnbkpfm
URL Chính Thức https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm
Mô tả Copy the link to an Instagram image to your clipboard.
Kích Thước Tệp 88.3 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2015-12-10
Ngày Phát Hành 2015-12-10
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển emptyset
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GramGrabber",
    "description": "Copy the link to an Instagram image to your clipboard.",
    "version": "1.0.0",
    "icons": {
        "16": "gramgrabber-icon-small.png",
        "128": "gramgrabber-icon-large.png"
    },
    "permissions": [
        "contextMenus",
        "*:\/\/*.instagram.com\/*",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "js": [
                "jquery-2.1.4.js",
                "gramGrabber.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "gramGrabberbg.js"
        ]
    }
}