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
官方URL 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"
        ]
    }
}