GramGrabber

Copy the link to an Instagram image to your clipboard.

What is GramGrabber?

GramGrabber is a Chrome extension developed by emptyset, and its main feature is "Copy the link to an Instagram image to your clipboard.".

Download GramGrabber Extension CRX File

Download GramGrabber extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name GramGrabber GramGrabber
ID bpghmpfldmkldeehcccbgebkldnbkpfm
Official URL https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm
Description Copy the link to an Instagram image to your clipboard.
File Size 88.3 KB
Installation Count 20
Current Version 1.0.0
Last Updated 2015-12-10
Publish Date 2015-12-10
Rating 5.00/5 Total 1 Ratings
Developer emptyset
Payment Type free
Supported Languages 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"
        ]
    }
}