ColorFlick for Dribbble

Developer friendly color palette extension for Dribbble

Vad är ColorFlick for Dribbble?

ColorFlick for Dribbble är en Chrome-tillägg utvecklad av Thiyagaraj T, och dess huvudfunktion är "Developer friendly color palette extension for Dribbble".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner ColorFlick for Dribbble-förlängningens CRX-fil

Ladda ner ColorFlick for Dribbble-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Lot of us look out for color inspirations from Dribbble. Copying hex codes has always been difficult. ColorFlick for Dribbble introduces a developer friendly color palette to quickly copy hex codes to your clipboard. Also there is Coolors(https://coolors.co) palette link as well too save a shareable palette from you favourite Dribbble shot.                    

Grundläggande Information om Tillägg

Namn ColorFlick for Dribbble ColorFlick for Dribbble
ID biemhkdecdmbffonfjjdhahmghllkcon
Officiell webbadress https://chromewebstore.google.com/detail/colorflick-for-dribbble/biemhkdecdmbffonfjjdhahmghllkcon
Beskrivning Developer friendly color palette extension for Dribbble
Filstorlek 27.64 KB
Antal Installationer 58
Aktuell Version 0.0.1
Senast Uppdaterad 2020-08-01
Publiceringsdatum 2020-07-31
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Thiyagaraj T
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ColorFlick for Dribbble",
    "version": "0.0.1",
    "description": "Developer friendly color palette extension for Dribbble",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Thiyagaraj (https:\/\/twitter.com\/thewizardjs)",
    "web_accessible_resources": [
        "icons\/*",
        "assets\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/dribbble.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}