Spell Check

Highlights misspelled words on the active webpage.

Spell Check là gì?

Spell Check là một tiện ích mở rộng Chrome được phát triển bởi Mike Costello, và tính năng chính của nó là "Highlights misspelled words on the active webpage.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Spell Check

Tải xuống các tệp mở rộng Spell Check dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spell Check Spell Check
ID ofbiibdnnhllfldbglbhmiojndiepejl
URL Chính Thức https://chromewebstore.google.com/detail/spell-check/ofbiibdnnhllfldbglbhmiojndiepejl
Mô tả Highlights misspelled words on the active webpage.
Kích Thước Tệp 208 KB
Số Lần Cài Đặt 2,758
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2016-06-03
Ngày Phát Hành 2016-06-03
Đánh Giá 4.00/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Mike Costello
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}