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 |
| 公式URL | 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 |
| Eメール | [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"
}
]
} | |