URLColors

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

URLColors란 무엇입니까?

URLColors은(는) url-colors에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension that adds a colored border around websites that match user inputted preferences."입니다.

확장 프로그램 스크린샷

screenshot

URLColors 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 URLColors URLColors
ID jjccpcminoppplpmcfghflolejbdkekm
공식 URL https://chromewebstore.google.com/detail/urlcolors/jjccpcminoppplpmcfghflolejbdkekm
설명 A chrome extension that adds a colored border around websites that match user inputted preferences.
파일 크기 452 KB
설치 횟수 6,909
현재 버전 2.1
최근 업데이트 2024-03-01
출시 날짜 2018-10-12
평점 4.61/5 총 33 개의 평점
개발자 url-colors
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/fej-snikduj/URLColors/
개인정보 보호 정책 페이지 URL https://www.dropbox.com/scl/fi/gbmg0g4t5orbytvppwbt7/URLColors-Privacy-Policy.paper?rlkey=u7kghjaanm51ef57yt7fvyo7m&dl=0
지원되는 언어 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"
    }
}