Pantone Color Code Reveal

Simple Extension to get color rbg & hex code

Pantone Color Code Revealคืออะไร?

Pantone Color Code Reveal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spinetax และคุณลักษณะหลักของมันคือ "Simple Extension to get color rbg & hex code"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pantone Color Code Reveal

ดาวน์โหลดไฟล์ส่วนขยาย Pantone Color Code Reveal ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Pantone Color Code Reveal Pantone Color Code Reveal
ID enlicnagnlabekmlceijgnocknhdegih
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pantone-color-code-reveal/enlicnagnlabekmlceijgnocknhdegih
คำอธิบาย Simple Extension to get color rbg & hex code
ขนาดไฟล์ 12.96 KB
จำนวนการติดตั้ง 632
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2022-11-28
วันที่เผยแพร่ 2022-10-24
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา spinetax
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}