GramGrabber

Copy the link to an Instagram image to your clipboard.

什麼是GramGrabber?

GramGrabber是由emptyset開發的Chrome擴展程式,該擴展的主要功能是“Copy the link to an Instagram image to your clipboard.”。

下載GramGrabber擴展crx文件

下載GramGrabber擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        - 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.                    

擴展基本資訊

名稱 GramGrabber GramGrabber
ID bpghmpfldmkldeehcccbgebkldnbkpfm
官方網址 https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm
簡介 Copy the link to an Instagram image to your clipboard.
檔案大小 88.3 KB
安裝次數 20
目前版本 1.0.0
更新時間 2015-12-10
上架時間 2015-12-10
評分 5.00/5 共 1 次評分
開發者 emptyset
付費類型 free
支援的語言 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"
        ]
    }
}