DribbleGrab
Grab palette from dribble in one tap
什麼是DribbleGrab?
DribbleGrab是由https://workofutkarsh.com開發的Chrome擴展程式,該擴展的主要功能是“Grab palette from dribble in one tap”。
擴展截圖
下載DribbleGrab擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |