Pickero

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

What is Pickero?

Pickero is a Chrome extension developed by client, and its main feature is "Helps you with picking color values from your browsers current tab. Eye drop button makes everything easy for you.".

Extension Screenshots

screenshot

Download Pickero Extension CRX File

Download Pickero extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Pickero Pickero
ID pembnoempgcaclgebonodhljchdmbjhf
Official URL https://chromewebstore.google.com/detail/pickero/pembnoempgcaclgebonodhljchdmbjhf
Description Helps you with picking color values from your browsers current tab. Eye drop button makes everything easy for you.
File Size 31.05 KB
Installation Count 1,000
Current Version 1.0.0
Last Updated 2021-10-28
Publish Date 2021-10-27
Rating 5.00/5 Total 7 Ratings
Developer client
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}