Color Palette Finder

Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.

Τι είναι το Color Palette Finder;

Το Color Palette Finder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jamesaburnell, και η κύρια λειτουργία του είναι "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Color Palette Finder

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

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

                        Find the top 6 most commonly used colors on any site! Creates a palette of HEX and RGB values. Clicking on one of the colors will copy the HEX value to your clipboard.                    

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

Όνομα Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
Επίσημο URL https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
Περιγραφή Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
Μέγεθος Αρχείου 28.27 KB
Αριθμός Εγκαταστάσεων 898
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2016-01-08
Ημερομηνία Δημοσίευσης 2016-01-08
Αξιολόγηση 2.60/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής jamesaburnell
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Palette Finder",
    "description": "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "cpflogo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "palette-finder.js"
            ]
        }
    ]
}