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 |
官方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" ] } ] } |