Eye Dropper

Eye Dropper is open source extension which allows you to pick colors from web pages, color picker and your personal color history.

Τι είναι το Eye Dropper;

Το Eye Dropper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://eyedropper.org, και η κύρια λειτουργία του είναι "Eye Dropper is open source extension which allows you to pick colors from web pages, color picker and your personal color history.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Eye Dropper allows you to easily pick a color from any web page or an advanced color picker. It's great tool for web developers and others who work with colors.

Latest changes
=============

Version 0.5.25 - 2024-02-10

- fix: do not open same campaign when already opened fixes #248
- feat: add tests for campaign history
- feat: replace jest with vitest
- promo: disable january promo

Version 0.5.24 - 2024-01-22

Removing colors from palettes is finally possible 🎉. Colors are only marked as deleted, so you can simply undelete them at any time.

Just click on pencil ✏️ icon next to palette names, do your thing and click on pencil again to exit edit mode.

- feat: Ability to (un)mark colors as deleted. Fixes #224, #229, #125, #241 and #127.
- fix: Load settings race condition. Fixes opt-out from information about updates #246 and possibly some more issues.
- promo: Continue with january promo campaign but now with correctly identifying Eye Dropper as source.
- chore: Apply new formatting style.
- chore: Add editorconfig.
- chore: Change prettier settings to match my usual style.

Full changelog is available at https://eyedropper.org/changelog                    

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

Όνομα Eye Dropper Eye Dropper
ID hmdcmlfkchdmnmnmheododdhjedfccka
Επίσημο URL https://chromewebstore.google.com/detail/eye-dropper/hmdcmlfkchdmnmnmheododdhjedfccka
Περιγραφή Eye Dropper is open source extension which allows you to pick colors from web pages, color picker and your personal color history.
Μέγεθος Αρχείου 110 KB
Αριθμός Εγκαταστάσεων 1,422,940
Τρέχουσα Έκδοση 0.5.25
Τελευταία Ενημέρωση 2024-02-11
Ημερομηνία Δημοσίευσης 2020-05-22
Αξιολόγηση 4.36/5 Συνολικά 2907 Αξιολογήσεις
Προγραμματιστής https://eyedropper.org
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://eyedropper.org
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/kepi/chromeEyeDropper/issues
URL της Σελίδας Πολιτικής Απορρήτου https://eyedropper.org/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Eye Dropper",
    "version": "0.5.25",
    "version_name": "0.5.25",
    "manifest_version": 2,
    "description": "Eye Dropper is open source extension which allows you to pick colors from web pages, color picker and your personal color history.",
    "homepage_url": "https:\/\/eyedropper.org",
    "minimum_chrome_version": "49",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_page": "options.html",
    "icons": {
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "Eye Dropper",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "js\/edropper2.js",
        "inject\/anchor-cursor-default.css",
        "inject\/anchor-cursor-crosshair.css",
        "inject\/edropper2.css"
    ],
    "commands": {
        "activate": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Activate pick color from web page"
        }
    }
}