Spellerizer

Convert Register articles to UK spelling.

Spellerizer란 무엇입니까?

Spellerizer은(는) Lot 49 Labs, LLC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convert Register articles to UK spelling."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Spellerizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
    }
}