Spellify
Fix spelling mistakes on any web page
什麼是Spellify?
Spellify是由DHS開發的Chrome擴展程式,該擴展的主要功能是“Fix spelling mistakes on any web page”。
擴展截圖
下載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 擴展基本資訊
| 名稱 | |
| ID | khfjghgaajkhlddnnffkipoaebjnaloa |
| 官方網址 | 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"
}
]
} | |