Pickero

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

Wat is Pickero?

Pickero is een Chrome-extensie ontwikkeld door client, en de belangrijkste functie is "Helps you with picking color values from your browsers current tab. Eye drop button makes everything easy for you.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Pickero

Download Pickero-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Pickero Pickero
ID pembnoempgcaclgebonodhljchdmbjhf
Officiële URL https://chromewebstore.google.com/detail/pickero/pembnoempgcaclgebonodhljchdmbjhf
Beschrijving Helps you with picking color values from your browsers current tab. Eye drop button makes everything easy for you.
Bestandsgrootte 31.05 KB
Aantal Installaties 1,000
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-10-28
Publicatiedatum 2021-10-27
Beoordeling 5.00/5 Totaal 7 Beoordelingen
Ontwikkelaar client
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}