Spellerizer

Convert Register articles to UK spelling.

Apa itu Spellerizer?

Spellerizer adalah ekstensi Chrome yang dikembangkan oleh Lot 49 Labs, LLC, dan fitur utamanya adalah "Convert Register articles to UK spelling.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Spellerizer

Unduh file ekstensi Spellerizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Spellerizer Spellerizer
ID pdggjggfjmcbkgpgocbnccmpgfdhoaco
URL Resmi https://chromewebstore.google.com/detail/spellerizer/pdggjggfjmcbkgpgocbnccmpgfdhoaco
Deskripsi Convert Register articles to UK spelling.
Ukuran File 44.65 KB
Jumlah Instalasi 41
Versi Saat Ini 1.0
Terakhir Diperbarui 2022-10-20
Tanggal Publikasi 2022-10-20
Penilaian 3.20/5 Total 5 Penilaian
Pengembang Lot 49 Labs, LLC
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Dotnaught/Spellerizer
URL Halaman Bantuan https://github.com/Dotnaught/Spellerizer/issues
URL Halaman Kebijakan Privasi https://lot49.com/privacy
Bahasa yang Didukung 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'"
    }
}