Trump Replacer
This extension will replace all mentions of Trump's name with your selected word or phrase
Vad är Trump Replacer?
Trump Replacer är en Chrome-tillägg utvecklad av taylor.hocutt, och dess huvudfunktion är "This extension will replace all mentions of Trump's name with your selected word or phrase".
Tilläggsskärmbilder
Ladda ner Trump Replacer-förlängningens CRX-fil
Ladda ner Trump Replacer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | iadkfodhaefhacmoigoakjcoagcfffld |
| Officiell webbadress | https://chromewebstore.google.com/detail/trump-replacer/iadkfodhaefhacmoigoakjcoagcfffld |
| Beskrivning | This extension will replace all mentions of Trump's name with your selected word or phrase |
| Filstorlek | 6.09 KB |
| Antal Installationer | 114 |
| Aktuell Version | 1.6 |
| Senast Uppdaterad | 2016-11-21 |
| Publiceringsdatum | 2016-11-21 |
| Betyg | 4.83/5 Totalt 6 Betyg |
| Utvecklare | taylor.hocutt |
| Betalningssätt | free |
| Stödda Språk | 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"
}
]
} | |