URLColors

A chrome extension that adds a colored border around websites that match user inputted preferences.

URLColors là gì?

URLColors là một tiện ích mở rộng Chrome được phát triển bởi url-colors, và tính năng chính của nó là "A chrome extension that adds a colored border around websites that match user inputted preferences.".

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

screenshot

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

Tải xuống các tệp mở rộng URLColors 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

                        This extension allows you to flag specified websites by highlighting the website with a custom colored border.  This is especially useful for developers who run their web applications on many different environments and who are constantly switching between a dev, test, and production version of an app or database.  Because the application may look the same on all environments, it's easy to accidentally do something on the production environment that shouldn't have been done.  

With URL Colors, you can easily have the browser flag important websites for you by specifying a the keyword to match against the tab url, the border color, width, opacity, whether or not the border should blink, and the interval of blinking.  The wildcard character (*) is now supported.

It also has a demo mode, or snooze mode, so you can shut if off while presenting for a specified period of time, without worrying about reactivating it later.  It automatically turns back on for you!

Want to add functionality or tweak something?  Please contribute here: https://github.com/fej-snikduj/URLColors/

Thanks to @dzoba for developing this with me!                    

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

Tên URLColors URLColors
ID jjccpcminoppplpmcfghflolejbdkekm
URL Chính Thức https://chromewebstore.google.com/detail/urlcolors/jjccpcminoppplpmcfghflolejbdkekm
Mô tả A chrome extension that adds a colored border around websites that match user inputted preferences.
Kích Thước Tệp 452 KB
Số Lần Cài Đặt 6,909
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2024-03-01
Ngày Phát Hành 2018-10-12
Đánh Giá 4.61/5 Tổng số 33 Đánh Giá
Nhà Phát Triển url-colors
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/fej-snikduj/URLColors/
URL Trang Chính Sách Bảo Mật https://www.dropbox.com/scl/fi/gbmg0g4t5orbytvppwbt7/URLColors-Privacy-Policy.paper?rlkey=u7kghjaanm51ef57yt7fvyo7m&dl=0
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "URLColors",
    "short_name": "URLColors",
    "description": "A chrome extension that adds a colored border around websites that match user inputted preferences.",
    "version": "2.1",
    "manifest_version": 3,
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "permissions": [
        "storage",
        "tabs",
        "scripting"
    ],
    "background": {
        "service_worker": "urlColorsServiceWorker.js"
    },
    "action": {
        "default_popup": "urlColorsPopup.html",
        "default_icon": "urlColorsIcon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "urlColorsContentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "48": "urlColorsIcon.png"
    }
}