Trump is a Chump
Replace the names of politicians with words of your own!
Co to jest Trump is a Chump?
Trump is a Chump to rozszerzenie Chrome opracowane przez chumpextension, a jego główną funkcją jest „Replace the names of politicians with words of your own!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Trump is a Chump
Pobierz pliki rozszerzeń Trump is a Chump w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nlcibpbonljgjeiajboacpdblbibdocb |
Oficjalny URL | https://chrome.google.com/webstore/detail/trump-is-a-chump/nlcibpbonljgjeiajboacpdblbibdocb |
Opis | Replace the names of politicians with words of your own! |
Rozmiar pliku | 115 KB |
Liczba instalacji | 129 |
Aktualna Wersja | 0.2.1 |
Ostatnia Aktualizacja | 2020-10-31 |
Data Publikacji | 2020-03-24 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | chumpextension |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } |