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是由Forwards開發的Chrome擴展程式,該擴展的主要功能是“The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…”。
擴展截圖
下載Website Color Palette擴展crx文件
下載Website Color Palette擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 |
說明頁面URL | https://websitecolorpalette.com/contact |
隱私政策頁面URL | 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" } } |