Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
ما هو Website Color Palette؟
Website Color Palette هو إضافة Chrome تم تطويرها بواسطة Forwards، والميزة الرئيسية لها هي "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Website Color Palette
قم بتنزيل ملفات الامتداد Website Color Palette بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl and more... - Copy the color instantly (on click). - No waiting times: 5 milliseconds. - No fake or random colors.
معلومات أساسية عن التمديد
الاسم | Website Color Palette |
ID | kegbegkdllkghhaibpbgoeakihgjbmka |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
الوصف | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
حجم الملف | 48.12 KB |
عدد التثبيتات | 731 |
النسخة الحالية | 0.1.0 |
آخر تحديث | 2020-12-14 |
تاريخ النشر | 2020-12-13 |
تقييم | 4.33/5 مجموع تقييمات 3 |
المطور | Forwards |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://websitecolorpalette.com |
عنوان صفحة المساعدة | https://websitecolorpalette.com/contact |
عنوان صفحة سياسة الخصوصية | http://websitecolorpalette.com/privacy-policy |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Website Color Palette", "manifest_version": 2, "version": "0.1.0", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "chroma.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icons\/icon128.png", "default_popup": ".\/popup\/index.html", "default_title": "Website Color Palette" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |