DribbleGrab
Grab palette from dribble in one tap
What is DribbleGrab?
DribbleGrab is a Chrome extension developed by https://workofutkarsh.com, and its main feature is "Grab palette from dribble in one tap".
Extension Screenshots
Download DribbleGrab Extension CRX File
Download DribbleGrab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A simple chrome extension grab palette from any dribble shot and open it in https://coolors.co/
Extension Basic Information
Name | DribbleGrab |
ID | fdppijglimagboifklceednogagekojj |
Official URL | https://chromewebstore.google.com/detail/dribblegrab/fdppijglimagboifklceednogagekojj |
Description | Grab palette from dribble in one tap |
File Size | 74.54 KB |
Installation Count | 187 |
Current Version | 0.0.1 |
Last Updated | 2020-07-28 |
Publish Date | 2020-07-16 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://workofutkarsh.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |