Spellerizer

Convert Register articles to UK spelling.

What is Spellerizer?

Spellerizer is a Chrome extension developed by Lot 49 Labs, LLC, and its main feature is "Convert Register articles to UK spelling.".

Extension Screenshots

screenshot
screenshot

Download Spellerizer Extension CRX File

Download Spellerizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Spellerizer Spellerizer
ID pdggjggfjmcbkgpgocbnccmpgfdhoaco
Official URL https://chromewebstore.google.com/detail/spellerizer/pdggjggfjmcbkgpgocbnccmpgfdhoaco
Description Convert Register articles to UK spelling.
File Size 44.65 KB
Installation Count 41
Current Version 1.0
Last Updated 2022-10-20
Publish Date 2022-10-20
Rating 3.20/5 Total 5 Ratings
Developer Lot 49 Labs, LLC
Email [email protected]
Payment Type free
Extension Website https://github.com/Dotnaught/Spellerizer
Help Page URL https://github.com/Dotnaught/Spellerizer/issues
Privacy Policy Page URL https://lot49.com/privacy
Supported Languages 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'"
    }
}