GramGrabber

Copy the link to an Instagram image to your clipboard.

ما هو GramGrabber؟

GramGrabber هو إضافة Chrome تم تطويرها بواسطة emptyset، والميزة الرئيسية لها هي "Copy the link to an Instagram image to your clipboard.".

تحميل ملف CRX للإضافة GramGrabber

قم بتنزيل ملفات الامتداد GramGrabber بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        ]
    }
}