Word Changer
Have fun replacing all instances of one word with another on pages you visit.
什么是Word Changer?
Word Changer是由skulegirlanna开发的Chrome扩展程序,该扩展的主要功能是“Have fun replacing all instances of one word with another on pages you visit.”。
扩展截图
下载Word Changer扩展crx文件
下载Word Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Word Changer |
ID | jjaeodeafkbbimejiboehejbdgpebjcd |
官方URL | https://chromewebstore.google.com/detail/word-changer/jjaeodeafkbbimejiboehejbdgpebjcd |
简介 | Have fun replacing all instances of one word with another on pages you visit. |
文件大小 | 12.41 KB |
安装次数 | 1,361 |
当前版本 | 0.2 |
更新时间 | 2021-03-08 |
上架时间 | 2020-02-19 |
评分 | 2.43/5 共14次评分 |
开发者 | skulegirlanna |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |