Spellerizer
Convert Register articles to UK spelling.
Spellerizerとは何ですか?
SpellerizerはLot 49 Labs, LLCによって開発されたChromeの拡張機能で、その主な機能は「Convert Register articles to UK spelling.」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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'" } } |