Spellerizer

Convert Register articles to UK spelling.

Co je Spellerizer?

Spellerizer je rozšíření Chrome vyvinuté Lot 49 Labs, LLC, a jeho hlavní funkcí je „Convert Register articles to UK spelling.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Spellerizer

Stáhněte si soubory rozšíření Spellerizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        An extension for changing words in articles published by The Register from US spellings to UK spellings.

You probably don't need this extension. And automatically swapping words with US spellings for their UK equivalent is a recipe for mayhem.

But if you're really determined to read The Register in the King's English, well, you've come to the right place.                    

Základní Informace o Rozšíření

Název Spellerizer Spellerizer
ID pdggjggfjmcbkgpgocbnccmpgfdhoaco
Oficiální URL https://chromewebstore.google.com/detail/spellerizer/pdggjggfjmcbkgpgocbnccmpgfdhoaco
Popis Convert Register articles to UK spelling.
Velikost souboru 44.65 KB
Počet instalací 41
Aktuální Verze 1.0
Poslední Aktualizace 2022-10-20
Datum Vydání 2022-10-20
Hodnocení 3.20/5 Celkem 5 Hodnocení
Vývojář Lot 49 Labs, LLC
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Dotnaught/Spellerizer
URL Stránky Nápovědy https://github.com/Dotnaught/Spellerizer/issues
URL Stránky Zásad Ochrany Soukromí https://lot49.com/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDesc__",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "scripting",
        "activeTab",
        "storage"
    ],
    "default_locale": "en",
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "data\/spelling_data.json"
            ],
            "matches": [
                "https:\/\/www.theregister.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/spell16.png",
        "32": "images\/spell32.png",
        "48": "images\/spell48.png",
        "128": "images\/spell128.png"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "content_security_policy": {
        "extension_pages": "default-src 'none'; style-src 'self'; media-src 'none'; child-src 'none'; connect-src 'none'; script-src 'self'; img-src 'self'; object-src 'none'"
    }
}