Word Changer
Have fun replacing all instances of one word with another on pages you visit.
Co je Word Changer?
Word Changer je rozšíření Chrome vyvinuté skulegirlanna, a jeho hlavní funkcí je „Have fun replacing all instances of one word with another on pages you visit.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Word Changer
Stáhněte si soubory rozšíření Word Changer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This extension lets you change a word of your choosing with a different one on websites that you're viewing. For instance, you can change "Bill Gates" to "Shrek" on his Wikipedia page! What fun! Configure the search and replace words in the extension. Then click on the extension in your browser while on a page where you want to do the word changing, and voila! Note that this is actually written by my 8 & 10 year old sons, who think this is the best way to learn how to program.
Základní Informace o Rozšíření
Název | Word Changer |
ID | jjaeodeafkbbimejiboehejbdgpebjcd |
Oficiální URL | https://chromewebstore.google.com/detail/word-changer/jjaeodeafkbbimejiboehejbdgpebjcd |
Popis | Have fun replacing all instances of one word with another on pages you visit. |
Velikost souboru | 12.41 KB |
Počet instalací | 1,361 |
Aktuální Verze | 0.2 |
Poslední Aktualizace | 2021-03-08 |
Datum Vydání | 2020-02-19 |
Hodnocení | 2.43/5 Celkem 14 Hodnocení |
Vývojář | skulegirlanna |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Changer", "description": "Have fun replacing all instances of one word with another on pages you visit.", "version": "0.2", "permissions": [ "storage", "activeTab" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Run WordChanger!" }, "icons": { "16": "Icon16.png", "48": "Icon48.png", "128": "Icon128.png" } } |