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
官方URL 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'"
    }
}