Spell Check

Highlights misspelled words on the active webpage.

什麼是Spell Check?

Spell Check是由Mike Costello開發的Chrome擴展程式,該擴展的主要功能是“Highlights misspelled words on the active webpage.”。

擴展截圖

screenshot

下載Spell Check擴展crx文件

下載Spell Check擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    }
}