Color Grab
Steal beautiful colors from Dribbble easily.
什么是Color Grab?
Color Grab是由tekeste.kidanu开发的Chrome扩展程序,该扩展的主要功能是“Steal beautiful colors from Dribbble easily.”。
扩展截图
下载Color Grab扩展crx文件
下载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 |
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" ] } ] } |