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 |
电子邮箱 | [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" } ] } |