Trump is a Chump
Replace the names of politicians with words of your own!
Что такое Trump is a Chump?
Trump is a Chump - это расширение Chrome, разработанное chumpextension, и его основная функция - "Replace the names of politicians with words of your own!".
Снимки экрана расширения
Скачать файл CRX расширения Trump is a Chump
Скачайте файлы расширений 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" } |