Spellerizer
Convert Register articles to UK spelling.
Spellerizerคืออะไร?
Spellerizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lot 49 Labs, LLC และคุณลักษณะหลักของมันคือ "Convert Register articles to UK spelling."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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'" } } |