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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
        ]
    }
}