URLColors

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

Was ist URLColors?

URLColors ist eine Chrome-Erweiterung, die von url-colors entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that adds a colored border around websites that match user inputted preferences.".

Erweiterungsscreenshots

screenshot

URLColors-Erweiterungs-CRX-Datei herunterladen

Laden Sie URLColors-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name URLColors URLColors
ID jjccpcminoppplpmcfghflolejbdkekm
Offizielle URL https://chromewebstore.google.com/detail/urlcolors/jjccpcminoppplpmcfghflolejbdkekm
Beschreibung A chrome extension that adds a colored border around websites that match user inputted preferences.
Dateigröße 452 KB
Installationsanzahl 6,909
Aktuelle Version 2.1
Letztes Update 2024-03-01
Veröffentlichungsdatum 2018-10-12
Bewertung 4.61/5 Insgesamt 33 Bewertungen
Entwickler url-colors
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/fej-snikduj/URLColors/
URL der Datenschutzrichtlinien-Seite https://www.dropbox.com/scl/fi/gbmg0g4t5orbytvppwbt7/URLColors-Privacy-Policy.paper?rlkey=u7kghjaanm51ef57yt7fvyo7m&dl=0
Unterstützte Sprachen 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"
    }
}