Word Changer
Have fun replacing all instances of one word with another on pages you visit.
Qu'est-ce que Word Changer ?
Word Changer est une extension Chrome développée par skulegirlanna, et sa fonction principale est "Have fun replacing all instances of one word with another on pages you visit.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Word Changer
Téléchargez les fichiers d'extension Word Changer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Word Changer |
ID | jjaeodeafkbbimejiboehejbdgpebjcd |
URL Officiel | https://chromewebstore.google.com/detail/word-changer/jjaeodeafkbbimejiboehejbdgpebjcd |
Description | Have fun replacing all instances of one word with another on pages you visit. |
Taille du Fichier | 12.41 KB |
Nombre d'Installations | 1,361 |
Version Actuelle | 0.2 |
Dernière Mise à Jour | 2021-03-08 |
Date de Publication | 2020-02-19 |
Évaluation | 2.43/5 Total 14 Évaluations |
Développeur | skulegirlanna |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |