Spellerizer

Convert Register articles to UK spelling.

Cos'è Spellerizer?

Spellerizer è un'estensione di Chrome sviluppata da Lot 49 Labs, LLC, e la sua funzione principale è "Convert Register articles to UK spelling.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Spellerizer

Scarica i file di estensione Spellerizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Spellerizer Spellerizer
ID pdggjggfjmcbkgpgocbnccmpgfdhoaco
URL Ufficiale https://chromewebstore.google.com/detail/spellerizer/pdggjggfjmcbkgpgocbnccmpgfdhoaco
Descrizione Convert Register articles to UK spelling.
Dimensione del File 44.65 KB
Conteggio Installazioni 41
Versione Corrente 1.0
Ultimo Aggiornamento 2022-10-20
Data di Pubblicazione 2022-10-20
Valutazione 3.20/5 Totale 5 Valutazioni
Sviluppatore Lot 49 Labs, LLC
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Dotnaught/Spellerizer
URL della Pagina di Aiuto https://github.com/Dotnaught/Spellerizer/issues
URL della Pagina della Politica sulla Privacy https://lot49.com/privacy
Lingue Supportate 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'"
    }
}