Eyedropper - Color picker

Pick a color on the current page

Qu'est-ce que Eyedropper - Color picker ?

Eyedropper - Color picker est une extension Chrome développée par roumi, et sa fonction principale est "Pick a color on the current page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Eyedropper - Color picker

Téléchargez les fichiers d'extension Eyedropper - Color picker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension allows you to pick a color on the current tab.                    

Informations de Base sur l'Extension

Nom Eyedropper - Color picker Eyedropper - Color picker
ID lffepicekmmcedjmmgdeaedjcccoddln
URL Officiel https://chromewebstore.google.com/detail/eyedropper-color-picker/lffepicekmmcedjmmgdeaedjcccoddln
Description Pick a color on the current page
Taille du Fichier 9.58 KB
Nombre d'Installations 457
Version Actuelle 2.0
Dernière Mise à Jour 2024-01-29
Date de Publication 2020-11-26
Développeur roumi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Remi-Leclercq-Blondel/eyedropper
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Eyedropper - Color picker",
    "version": "2.0",
    "description": "Pick a color on the current page",
    "background": {
        "service_worker": "src\/background\/background.js"
    },
    "action": {
        "default_popup": "src\/popup\/index.html",
        "default_icon": "images\/logo.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content\/eyedrop.js"
            ],
            "css": [
                "src\/content\/style.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo.png",
        "32": "images\/logo.png",
        "128": "images\/logo.png"
    },
    "manifest_version": 3
}