Spellerizer

Convert Register articles to UK spelling.

Spellerizer là gì?

Spellerizer là một tiện ích mở rộng Chrome được phát triển bởi Lot 49 Labs, LLC, và tính năng chính của nó là "Convert Register articles to UK spelling.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Spellerizer

Tải xuống các tệp mở rộng Spellerizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spellerizer Spellerizer
ID pdggjggfjmcbkgpgocbnccmpgfdhoaco
URL Chính Thức https://chromewebstore.google.com/detail/spellerizer/pdggjggfjmcbkgpgocbnccmpgfdhoaco
Mô tả Convert Register articles to UK spelling.
Kích Thước Tệp 44.65 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-10-20
Ngày Phát Hành 2022-10-20
Đánh Giá 3.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Lot 49 Labs, LLC
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Dotnaught/Spellerizer
URL Trang Trợ Giúp https://github.com/Dotnaught/Spellerizer/issues
URL Trang Chính Sách Bảo Mật https://lot49.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}