GramGrabber

Copy the link to an Instagram image to your clipboard.

Wat is GramGrabber?

GramGrabber is een Chrome-extensie ontwikkeld door emptyset, en de belangrijkste functie is "Copy the link to an Instagram image to your clipboard.".

Download het CRX-bestand van de extensie GramGrabber

Download GramGrabber-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam GramGrabber GramGrabber
ID bpghmpfldmkldeehcccbgebkldnbkpfm
Officiële URL https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm
Beschrijving Copy the link to an Instagram image to your clipboard.
Bestandsgrootte 88.3 KB
Aantal Installaties 20
Huidige Versie 1.0.0
Laatst Bijgewerkt 2015-12-10
Publicatiedatum 2015-12-10
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar emptyset
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}