GramGrabber

Copy the link to an Instagram image to your clipboard.

GramGrabber क्या है?

GramGrabber emptyset द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy the link to an Instagram image to your clipboard."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GramGrabber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        - 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"
        ]
    }
}