WhatColor

The easiest way to identify colors on web pages.

Τι είναι το WhatColor;

Το WhatColor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://milhen.ch, και η κύρια λειτουργία του είναι "The easiest way to identify colors on web pages.".

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

screenshot
screenshot
screenshot

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

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

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

                        This chrome extension has been written to demonstrate how to execute code within the current page after a chrome extension button is pressed, as discussed in my article;

https://medium.com/p/f951315854e9

The basic premise is to parse all css stylesheet files that are linked to the current page and add a sidebar that lists all of the colors referenced within the stylesheets.

# Caveats
* For demo purposes only (supporting the atricle).
* Inline colors are not displayed.                    

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

Όνομα WhatColor WhatColor
ID begomjapoppkfcdcaindehabfglbfkcn
Επίσημο URL https://chromewebstore.google.com/detail/whatcolor/begomjapoppkfcdcaindehabfglbfkcn
Περιγραφή The easiest way to identify colors on web pages.
Μέγεθος Αρχείου 32.14 KB
Αριθμός Εγκαταστάσεων 1,380
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2022-09-08
Ημερομηνία Δημοσίευσης 2013-10-29
Αξιολόγηση 2.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://milhen.ch
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://medium.com/p/f951315854e9
Διεύθυνση URL της Σελίδας Βοήθειας https://medium.com/p/f951315854e9
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js",
            "asyncTracking.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/dropper48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*",
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js",
                "content\/js\/plugins.js"
            ]
        }
    ],
    "description": "The easiest way to identify colors on web pages.",
    "icons": {
        "128": "images\/dropper128.png",
        "48": "images\/dropper48.png",
        "16": "images\/dropper16.png"
    },
    "manifest_version": 2,
    "name": "WhatColor",
    "version": "1.0.2",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "content\/coordinator.js",
        "content\/*"
    ]
}