Pantone Color Code Reveal

Simple Extension to get color rbg & hex code

What is Pantone Color Code Reveal?

Pantone Color Code Reveal is a Chrome extension developed by spinetax, and its main feature is "Simple Extension to get color rbg & hex code".

Extension Screenshots

screenshot

Download Pantone Color Code Reveal Extension CRX File

Download Pantone Color Code Reveal 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

                        Simple extension to reveal pantone color RGB & HEX code on the website.                    

Extension Basic Information

Name Pantone Color Code Reveal Pantone Color Code Reveal
ID enlicnagnlabekmlceijgnocknhdegih
Official URL https://chromewebstore.google.com/detail/pantone-color-code-reveal/enlicnagnlabekmlceijgnocknhdegih
Description Simple Extension to get color rbg & hex code
File Size 12.96 KB
Installation Count 632
Current Version 0.1
Last Updated 2022-11-28
Publish Date 2022-10-24
Rating 2.00/5 Total 4 Ratings
Developer spinetax
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pantone Color Code Reveal",
    "description": "Simple Extension to get color rbg & hex code",
    "version": "0.1",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pantone.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}