DribbleGrab
Grab palette from dribble in one tap
Qu'est-ce que DribbleGrab ?
DribbleGrab est une extension Chrome développée par https://workofutkarsh.com, et sa fonction principale est "Grab palette from dribble in one tap".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension DribbleGrab
Téléchargez les fichiers d'extension DribbleGrab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
A simple chrome extension grab palette from any dribble shot and open it in https://coolors.co/
Informations de Base sur l'Extension
Nom | DribbleGrab |
ID | fdppijglimagboifklceednogagekojj |
URL Officiel | https://chromewebstore.google.com/detail/dribblegrab/fdppijglimagboifklceednogagekojj |
Description | Grab palette from dribble in one tap |
Taille du Fichier | 74.54 KB |
Nombre d'Installations | 187 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2020-07-28 |
Date de Publication | 2020-07-16 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://workofutkarsh.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |