Trump Replacer
This extension will replace all mentions of Trump's name with your selected word or phrase
什么是Trump Replacer?
Trump Replacer是由taylor.hocutt开发的Chrome扩展程序,该扩展的主要功能是“This extension will replace all mentions of Trump's name with your selected word or phrase”。
扩展截图
下载Trump Replacer扩展crx文件
下载Trump Replacer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add this app to your Chrome browser and replace all instances of "Trump" with a word or phrase of your choice! Just click the plugin icon in the top of your browser and enter in a new value. 扩展基本信息
| 名称 | |
| ID | iadkfodhaefhacmoigoakjcoagcfffld |
| 官方URL | https://chromewebstore.google.com/detail/trump-replacer/iadkfodhaefhacmoigoakjcoagcfffld |
| 简介 | This extension will replace all mentions of Trump's name with your selected word or phrase |
| 文件大小 | 6.09 KB |
| 安装次数 | 114 |
| 当前版本 | 1.6 |
| 更新时间 | 2016-11-21 |
| 上架时间 | 2016-11-21 |
| 评分 | 4.83/5 共6次评分 |
| 开发者 | taylor.hocutt |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trump Replacer",
"description": "This extension will replace all mentions of Trump's name with your selected word or phrase",
"version": "1.6",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
} | |