WordBird
Find and Replace Words on Websites.
What is WordBird?
WordBird is a Chrome extension developed by thalida, and its main feature is "Find and Replace Words on Websites.".
Extension Screenshots
Download WordBird Extension CRX File
Download WordBird extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | phjelaokjghhjogbfmkljhghhnbidfgk |
Official URL | https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk |
Description | Find and Replace Words on Websites. |
File Size | 978 KB |
Installation Count | 13 |
Current Version | 1.0.5 |
Last Updated | 2017-02-17 |
Publish Date | 2017-02-17 |
Rating | 5.00/5 Total 2 Ratings |
Developer | thalida |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/thalida/WordBird |
Help Page URL | https://github.com/thalida/WordBird/issues |
Supported Languages | 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" } ] } |