Spellerizer

Convert Register articles to UK spelling.

Spellerizer क्या है?

Spellerizer Lot 49 Labs, LLC द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Convert Register articles to UK spelling."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spellerizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
    }
}