Pickero

Helps you with picking color values from your browsers current tab. Eye drop button makes everything easy for you.

Cos'è Pickero?

Pickero è un'estensione di Chrome sviluppata da client, e la sua funzione principale è "Helps you with picking color values from your browsers current tab. Eye drop button makes everything easy for you.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pickero

Scarica i file di estensione Pickero in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Find the color values that you like on a tab easily using Pickero. 
Features :
- Eye Dropper
- Save last picked colors
- Color Palette for selecting colors
- Show both rgb and hex values
- Copy color code to clipboard                    

Informazioni di Base sull'Estensione

Nome Pickero Pickero
ID pembnoempgcaclgebonodhljchdmbjhf
URL Ufficiale https://chromewebstore.google.com/detail/pickero/pembnoempgcaclgebonodhljchdmbjhf
Descrizione Helps you with picking color values from your browsers current tab. Eye drop button makes everything easy for you.
Dimensione del File 31.05 KB
Conteggio Installazioni 1,000
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-10-28
Data di Pubblicazione 2021-10-27
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore client
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pickero",
    "description": "Helps you with picking color values from your browsers current tab. Eye drop button makes everything easy for you.",
    "version": "1.0.0",
    "icons": {
        "16": ".\/assets\/16.png",
        "24": ".\/assets\/24.png",
        "32": ".\/assets\/32.png",
        "48": ".\/assets\/48.png",
        "128": ".\/assets\/128.png"
    },
    "browser_action": {
        "default_popup": ".\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/content\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            ".\/background\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "background",
        "activeTab",
        "storage"
    ]
}