Color and Fonts Extractor

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

Τι είναι το Color and Fonts Extractor;

Το Color and Fonts Extractor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nh2amine, και η κύρια λειτουργία του είναι "This extension is meant to help you extract the color palette and font of any website".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Color and Fonts Extractor

Λήψη αρχείων επέκτασης Color and Fonts Extractor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Color and Fonts Extractor Color and Fonts Extractor
ID jbnjlcapocfdcoieepfpmcjfjhjdfibo
Επίσημο URL https://chromewebstore.google.com/detail/color-and-fonts-extractor/jbnjlcapocfdcoieepfpmcjfjhjdfibo
Περιγραφή This extension is meant to help you extract the color palette and font of any website
Μέγεθος Αρχείου 182 KB
Αριθμός Εγκαταστάσεων 2,878
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2020-06-10
Ημερομηνία Δημοσίευσης 2020-06-09
Αξιολόγηση 1.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής nh2amine
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}