Spellerizer

Convert Register articles to UK spelling.

Что такое Spellerizer?

Spellerizer - это расширение Chrome, разработанное Lot 49 Labs, LLC, и его основная функция - "Convert Register articles to UK spelling.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Spellerizer

Скачайте файлы расширений 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'"
    }
}