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 là gì?

Website Color Palette là một tiện ích mở rộng Chrome được phát triển bởi Forwards, và tính năng chính của nó là "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Website Color Palette

Tải xuống các tệp mở rộng Website Color Palette dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Website Color Palette Website Color Palette
ID kegbegkdllkghhaibpbgoeakihgjbmka
URL Chính Thức https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka
Mô tả The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Kích Thước Tệp 48.12 KB
Số Lần Cài Đặt 731
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2020-12-14
Ngày Phát Hành 2020-12-13
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Forwards
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://websitecolorpalette.com
URL Trang Trợ Giúp https://websitecolorpalette.com/contact
URL Trang Chính Sách Bảo Mật http://websitecolorpalette.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}