Trump Replacer
This extension will replace all mentions of Trump's name with your selected word or phrase
Что такое Trump Replacer?
Trump Replacer - это расширение Chrome, разработанное taylor.hocutt, и его основная функция - "This extension will replace all mentions of Trump's name with your selected word or phrase".
Снимки экрана расширения
Скачать файл CRX расширения Trump Replacer
Скачайте файлы расширений Trump Replacer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | iadkfodhaefhacmoigoakjcoagcfffld |
| Официальный URL | https://chromewebstore.google.com/detail/trump-replacer/iadkfodhaefhacmoigoakjcoagcfffld |
| Описание | This extension will replace all mentions of Trump's name with your selected word or phrase |
| Размер файла | 6.09 KB |
| Количество установок | 114 |
| Текущая Версия | 1.6 |
| Последнее Обновление | 2016-11-21 |
| Дата публикации | 2016-11-21 |
| Рейтинг | 4.83/5 Всего 6 оценок |
| Разработчик | taylor.hocutt |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
}
]
} | |