Trump Replacer
This extension will replace all mentions of Trump's name with your selected word or phrase
Was ist Trump Replacer?
Trump Replacer ist eine Chrome-Erweiterung, die von taylor.hocutt entwickelt wurde, und ihr Hauptmerkmal ist "This extension will replace all mentions of Trump's name with your selected word or phrase".
Erweiterungsscreenshots
Trump Replacer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trump Replacer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iadkfodhaefhacmoigoakjcoagcfffld |
| Offizielle URL | https://chromewebstore.google.com/detail/trump-replacer/iadkfodhaefhacmoigoakjcoagcfffld |
| Beschreibung | This extension will replace all mentions of Trump's name with your selected word or phrase |
| Dateigröße | 6.09 KB |
| Installationsanzahl | 114 |
| Aktuelle Version | 1.6 |
| Letztes Update | 2016-11-21 |
| Veröffentlichungsdatum | 2016-11-21 |
| Bewertung | 4.83/5 Insgesamt 6 Bewertungen |
| Entwickler | taylor.hocutt |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
]
} | |