Ultraviolet

Highlight words based on a remote dictionary list

Hvad er Ultraviolet?

Ultraviolet er en Chrome-udvidelse udviklet af ultraviolet.extension, og dens hovedfunktion er "Highlight words based on a remote dictionary list".

Udvidelsesskærmbilleder

screenshot

Download Ultraviolet-udvidelses-CRX-fil

Download Ultraviolet-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Ultraviolet will highlight words and report on any successful hits by getting it's information from remote servers. This extension allows you to control the exact words you want highlighted and is a great way to easily keep track of words you want highlighted no matter what Chrome browser you use!                    

Grundlæggende oplysninger om udvidelsen

Navn Ultraviolet Ultraviolet
ID epgidenopbojaackcceofgcieacleckp
Officiel URL https://chrome.google.com/webstore/detail/ultraviolet/epgidenopbojaackcceofgcieacleckp
Beskrivelse Highlight words based on a remote dictionary list
Filstørrelse 90.63 KB
Antal Installationer 31
Nuværende Version 1.8
Senest Opdateret 2014-09-23
Udgivelsesdato 2014-09-23
Udvikler ultraviolet.extension
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ultraviolet",
    "version": "1.8",
    "description": "Highlight words based on a remote dictionary list",
    "icons": {
        "16": "ico\/16.png",
        "48": "ico\/48.png",
        "128": "ico\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/*.mail.live.com\/*",
                "*:\/\/*.mail.yahoo.com\/*",
                "*:\/\/*.mail.aol.com\/*",
                "*:\/\/*.mail.163.com\/*",
                "*:\/\/*.mail.126.com\/*"
            ],
            "js": [
                "jquery.js",
                "init.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "https:\/\/*\/",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "notifications"
    ],
    "background": {
        "scripts": [
            "index.js"
        ]
    }
}