Spellify

Fix spelling mistakes on any web page

什么是Spellify?

Spellify是由DHS开发的Chrome扩展程序,该扩展的主要功能是“Fix spelling mistakes on any web page”。

扩展截图

screenshot
screenshot

下载Spellify扩展crx文件

下载Spellify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Ever get annoyed by spelling mistakes on web pages? Well now you can fix them!

1. Highlight a spelling mistake on a web page
2. Click the Spellify browser button
3. Enter the replacement text
4. Click 'Fix it!'
5. Breathe a sigh of relief                    

扩展基本信息

名称 Spellify Spellify
ID khfjghgaajkhlddnnffkipoaebjnaloa
官方URL https://chromewebstore.google.com/detail/spellify/khfjghgaajkhlddnnffkipoaebjnaloa
简介 Fix spelling mistakes on any web page
文件大小 30.28 KB
安装次数 41
当前版本 0.0.1
更新时间 2015-02-08
上架时间 2015-02-08
评分 5.00/5 共1次评分
开发者 DHS
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spellify",
    "short_name": "Spellify",
    "description": "Fix spelling mistakes on any web page",
    "version": "0.0.1",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "32.png",
        "default_title": "Fix a spelling mistake",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "replace.js"
            ],
            "run_at": "document_end"
        }
    ]
}