DribbleGrab
Grab palette from dribble in one tap
DribbleGrabคืออะไร?
DribbleGrab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://workofutkarsh.com และคุณลักษณะหลักของมันคือ "Grab palette from dribble in one tap"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DribbleGrab
ดาวน์โหลดไฟล์ส่วนขยาย DribbleGrab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple chrome extension grab palette from any dribble shot and open it in https://coolors.co/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | DribbleGrab |
ID | fdppijglimagboifklceednogagekojj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/dribblegrab/fdppijglimagboifklceednogagekojj |
คำอธิบาย | Grab palette from dribble in one tap |
ขนาดไฟล์ | 74.54 KB |
จำนวนการติดตั้ง | 187 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2020-07-28 |
วันที่เผยแพร่ | 2020-07-16 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://workofutkarsh.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DribbleGrab", "version": "0.0.1", "manifest_version": 2, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "description": "Grab palette from dribble in one tap", "homepage_url": "http:\/\/workofutkarsh.com", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "DribbleGrab!" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/dribbble.com\/*", "http:\/\/dribbble.com\/*" ], "js": [ "inject.js" ] } ] } |