Spellerizer

Convert Register articles to UK spelling.

什麼是Spellerizer?

Spellerizer是由Lot 49 Labs, LLC開發的Chrome擴展程式,該擴展的主要功能是“Convert Register articles to UK spelling.”。

擴展截圖

screenshot
screenshot

下載Spellerizer擴展crx文件

下載Spellerizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Spellerizer Spellerizer
ID pdggjggfjmcbkgpgocbnccmpgfdhoaco
官方網址 https://chromewebstore.google.com/detail/spellerizer/pdggjggfjmcbkgpgocbnccmpgfdhoaco
簡介 Convert Register articles to UK spelling.
檔案大小 44.65 KB
安裝次數 41
目前版本 1.0
更新時間 2022-10-20
上架時間 2022-10-20
評分 3.20/5 共 5 次評分
開發者 Lot 49 Labs, LLC
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Dotnaught/Spellerizer
說明頁面URL https://github.com/Dotnaught/Spellerizer/issues
隱私政策頁面URL https://lot49.com/privacy
支援的語言 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'"
    }
}