Color and Fonts Extractor

This extension is meant to help you extract the color palette and font of any website

Wat is Color and Fonts Extractor?

Color and Fonts Extractor is een Chrome-extensie ontwikkeld door nh2amine, en de belangrijkste functie is "This extension is meant to help you extract the color palette and font of any website".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Color and Fonts Extractor

Download Color and Fonts Extractor-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

                        The real purpose of this extension is to simplify the extraction of the color palette and fonts names of any website.

if you are a designer or front-end developer, you can easily extract copy and paste the color palette and the font names used in any website with just 2 clicks. 

You can than copy and past as css varibles in your css/scss files.

You can also extract each color individually in RGB(A), Hex or HSL format.                    

Basisinformatie over de Extensie

Naam Color and Fonts Extractor Color and Fonts Extractor
ID jbnjlcapocfdcoieepfpmcjfjhjdfibo
Officiële URL https://chromewebstore.google.com/detail/color-and-fonts-extractor/jbnjlcapocfdcoieepfpmcjfjhjdfibo
Beschrijving This extension is meant to help you extract the color palette and font of any website
Bestandsgrootte 182 KB
Aantal Installaties 2,878
Huidige Versie 1.0.4
Laatst Bijgewerkt 2020-06-10
Publicatiedatum 2020-06-09
Beoordeling 1.00/5 Totaal 4 Beoordelingen
Ontwikkelaar nh2amine
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Color and Fonts Extractor",
    "version": "1.0.4",
    "description": "This extension is meant to help you extract the color palette and font of any website",
    "manifest_version": 2,
    "icons": {
        "16": "icon_16.png",
        "24": "icon_24.png",
        "32": "icon_32.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon_16.png",
            "24": "icon_24.png",
            "32": "icon_32.png",
            "128": "icon_128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extract_css.js"
            ]
        }
    ]
}