Trump is a Chump
Replace the names of politicians with words of your own!
什么是Trump is a Chump?
Trump is a Chump是由chumpextension开发的Chrome扩展程序,该扩展的主要功能是“Replace the names of politicians with words of your own!”。
扩展截图
下载Trump is a Chump扩展crx文件
下载Trump is a Chump扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Is political news getting you down? Try out the Chump Trump extension! Every time you see the word "Trump" on your browser, it gets replaced by the word "Chump". Choose your own words to replace Trump with in the options page. Also works for Pence, Conway and McConnell.
扩展基本信息
名称 | |
ID | nlcibpbonljgjeiajboacpdblbibdocb |
官方URL | https://chrome.google.com/webstore/detail/trump-is-a-chump/nlcibpbonljgjeiajboacpdblbibdocb |
简介 | Replace the names of politicians with words of your own! |
文件大小 | 115 KB |
安装次数 | 129 |
当前版本 | 0.2.1 |
更新时间 | 2020-10-31 |
上架时间 | 2020-03-24 |
评分 | 5.00/5 共3次评分 |
开发者 | chumpextension |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trump is a Chump", "version": "0.2.1", "description": "Replace the names of politicians with words of your own!", "content_scripts": [ { "css": [ ".\/content\/style.css" ], "js": [ ".\/content\/main.js" ], "matches": [ "https:\/\/*\/*" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background\/index.js" ], "persistent": false }, "permissions": [ "activeTab", "storage" ], "icons": { "16": "logo_16.png", "48": "logo_48.png", "128": "logo_128.png" }, "browser_action": { "default_popup": ".\/popup\/index.html" }, "options_page": ".\/options\/index.html" } |