DribbleGrab

Grab palette from dribble in one tap

Wat is DribbleGrab?

DribbleGrab is een Chrome-extensie ontwikkeld door https://workofutkarsh.com, en de belangrijkste functie is "Grab palette from dribble in one tap".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie DribbleGrab

Download DribbleGrab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A simple chrome extension grab palette from any dribble shot and open it in https://coolors.co/                    

Basisinformatie over de Extensie

Naam DribbleGrab DribbleGrab
ID fdppijglimagboifklceednogagekojj
Officiële URL https://chromewebstore.google.com/detail/dribblegrab/fdppijglimagboifklceednogagekojj
Beschrijving Grab palette from dribble in one tap
Bestandsgrootte 74.54 KB
Aantal Installaties 187
Huidige Versie 0.0.1
Laatst Bijgewerkt 2020-07-28
Publicatiedatum 2020-07-16
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://workofutkarsh.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}