WordBird
Find and Replace Words on Websites.
什麼是WordBird?
WordBird是由thalida開發的Chrome擴展程式,該擴展的主要功能是“Find and Replace Words on Websites.”。
擴展截圖
下載WordBird擴展crx文件
下載WordBird擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Ever wanted to replace all instances of "word" with "bird"? Well, now you can!
As well as any and all other word/phrase replacements your mind can dream of. 擴展基本資訊
| 名稱 | |
| ID | phjelaokjghhjogbfmkljhghhnbidfgk |
| 官方網址 | https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk |
| 簡介 | Find and Replace Words on Websites. |
| 檔案大小 | 978 KB |
| 安裝次數 | 13 |
| 目前版本 | 1.0.5 |
| 更新時間 | 2017-02-17 |
| 上架時間 | 2017-02-17 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | thalida |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/thalida/WordBird |
| 說明頁面URL | https://github.com/thalida/WordBird/issues |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "WordBird",
"description": "Find and Replace Words on Websites.",
"version": "1.0.5",
"author": "thalida",
"homepage_url": "https:\/\/github.com\/thalida\/WordBird",
"permissions": [
"storage"
],
"icons": {
"19": "icons\/icon-on.19.png",
"48": "icons\/icon-on.48.png",
"128": "icons\/icon-on.128.png"
},
"browser_action": {
"default_icon": {
"19": "icons\/icon-on.19.png",
"48": "icons\/icon-on.48.png",
"128": "icons\/icon-on.128.png"
},
"default_popup": "public\/dist\/popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"options_page": "public\/dist\/options.html",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
]
} | |