Spellerizer

Convert Register articles to UK spelling.

¿Qué es Spellerizer?

Spellerizer es una extensión de Chrome desarrollada por Lot 49 Labs, LLC, y su función principal es "Convert Register articles to UK spelling.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Spellerizer

Descarga archivos de extensión Spellerizer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Spellerizer Spellerizer
ID pdggjggfjmcbkgpgocbnccmpgfdhoaco
URL Oficial https://chromewebstore.google.com/detail/spellerizer/pdggjggfjmcbkgpgocbnccmpgfdhoaco
Descripción Convert Register articles to UK spelling.
Tamaño del Archivo 44.65 KB
Cantidad de Instalaciones 41
Versión Actual 1.0
Última Actualización 2022-10-20
Fecha de Publicación 2022-10-20
Calificación 3.20/5 Total de 5 Calificaciones
Desarrollador Lot 49 Labs, LLC
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Dotnaught/Spellerizer
URL de la Página de Ayuda https://github.com/Dotnaught/Spellerizer/issues
URL de la Página de Política de Privacidad https://lot49.com/privacy
Idiomas Soportados 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'"
    }
}