Spell Check

Highlights misspelled words on the active webpage.

Spell Check क्या है?

Spell Check Mike Costello द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlights misspelled words on the active webpage."।

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

screenshot

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

crx प्रारूप में Spell Check एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Quickly spell check webpages. Useful for web developers & editors to catch spelling errors in published sites.

* Supports english dictionary.
* Marks misspelled words inline on the page with a red underline.
* Does not offer suggestions.
* Safe - plugin requires no special permissions or external requests.
* Keyboard shortcut Cmd+Shift+K (Mac) or Ctrl+Shift+K (Win)                    

एक्सटेंशन की मूल जानकारी

नाम Spell Check Spell Check
ID ofbiibdnnhllfldbglbhmiojndiepejl
आधिकारिक URL https://chromewebstore.google.com/detail/spell-check/ofbiibdnnhllfldbglbhmiojndiepejl
विवरण Highlights misspelled words on the active webpage.
फ़ाइल का आकार 208 KB
स्थापना संख्या 2,758
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2016-06-03
प्रकाशन तिथि 2016-06-03
रेटिंग 4.00/5 कुल 14 रेटिंग्स
डेवलपर Mike Costello
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spell Check",
    "short_name": "Spell Check Page",
    "version": "1.0.2",
    "description": "Highlights misspelled words on the active webpage.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "spell\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Spell check this page"
    },
    "web_accessible_resources": [
        "typo\/dictionaries\/*"
    ],
    "commands": {
        "toggle-spell-check": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Toggle Spell Check"
        }
    }
}