Ding Dong Johnson
Replaces the text 'home run' with 'ding dong Johnson'.
Что такое Ding Dong Johnson?
Ding Dong Johnson - это расширение Chrome, разработанное Colin Shevlin, и его основная функция - "Replaces the text 'home run' with 'ding dong Johnson'.".
Снимки экрана расширения
Скачать файл CRX расширения Ding Dong Johnson
Скачайте файлы расширений Ding Dong Johnson в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Inspired by this tweet: https://twitter.com/mcculloughtimes/status/385189088694771712
Apparently Pedro Martinez on occasion calls home runs "ding dong Johnsons." This Chrome extension replaces any instance of "home run" with "ding dong Johnson," because that is a superior and more descriptive term.
Code is here: https://github.com/cwshevlin/Ding-Dong-Johnson Основная информация о расширении
| Название | |
| ID | bgeoilalcobkgmcanpbdgfckhkflblcm |
| Официальный URL | https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm |
| Описание | Replaces the text 'home run' with 'ding dong Johnson'. |
| Размер файла | 560 KB |
| Количество установок | 23 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2016-03-19 |
| Дата публикации | 2016-03-19 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Colin Shevlin |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/cwshevlin/Ding-Dong-Johnson |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Ding Dong Johnson",
"icons": {
"16": "baseball.png",
"32": "baseball.png",
"64": "pedro.png"
},
"version": "1.0",
"description": "Replaces the text 'home run' with 'ding dong Johnson'.",
"browser_action": {
"default_icon": "baseball.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
]
} | |