Spellerizer

Convert Register articles to UK spelling.

Qu'est-ce que Spellerizer ?

Spellerizer est une extension Chrome développée par Lot 49 Labs, LLC, et sa fonction principale est "Convert Register articles to UK spelling.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Spellerizer

Téléchargez les fichiers d'extension Spellerizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Spellerizer Spellerizer
ID pdggjggfjmcbkgpgocbnccmpgfdhoaco
URL Officiel https://chromewebstore.google.com/detail/spellerizer/pdggjggfjmcbkgpgocbnccmpgfdhoaco
Description Convert Register articles to UK spelling.
Taille du Fichier 44.65 KB
Nombre d'Installations 41
Version Actuelle 1.0
Dernière Mise à Jour 2022-10-20
Date de Publication 2022-10-20
Évaluation 3.20/5 Total 5 Évaluations
Développeur Lot 49 Labs, LLC
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Dotnaught/Spellerizer
URL de la Page d'Aide https://github.com/Dotnaught/Spellerizer/issues
URL de la Page de Politique de Confidentialité https://lot49.com/privacy
Langues Prises en Charge 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'"
    }
}