Color Grab

Steal beautiful colors from Dribbble easily.

Color Grabคืออะไร?

Color Grab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tekeste.kidanu และคุณลักษณะหลักของมันคือ "Steal beautiful colors from Dribbble easily."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Color Grab

ดาวน์โหลดไฟล์ส่วนขยาย Color Grab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension makes copying colors from Dribbble shots as easy a single click. 
Click your favorite color from the chips next to a shot and the Hex code is available on your clipboard!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Color Grab Color Grab
ID aiamoeimgpbjfhmagepggjdickchgpfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/color-grab/aiamoeimgpbjfhmagepggjdickchgpfd
คำอธิบาย Steal beautiful colors from Dribbble easily.
ขนาดไฟล์ 46.97 KB
จำนวนการติดตั้ง 698
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-07-06
วันที่เผยแพร่ 2018-07-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา tekeste.kidanu
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Color Grab",
    "description": "Steal beautiful colors from Dribbble easily.",
    "version": "1.0",
    "homepage_url": "https:\/\/twitter.com\/iamtekeste",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "128-icon.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/dribbble.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/dribbble.com\/*"
            ],
            "css": [
                "tippy.css",
                "content.css"
            ],
            "js": [
                "tippy.min.js",
                "bundle.js"
            ]
        }
    ]
}