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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Pantone Color Code Reveal
قم بتنزيل ملفات الامتداد Pantone Color Code Reveal بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Simple extension to reveal pantone color RGB & HEX code on the website.
معلومات أساسية عن التمديد
الاسم | 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" ] } |