Ding Dong Johnson
Replaces the text 'home run' with 'ding dong Johnson'.
Wat is Ding Dong Johnson?
Ding Dong Johnson is een Chrome-extensie ontwikkeld door Colin Shevlin, en de belangrijkste functie is "Replaces the text 'home run' with 'ding dong Johnson'.".
Extensie Screenshots
Download het CRX-bestand van de extensie Ding Dong Johnson
Download Ding Dong Johnson-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Ding Dong Johnson |
ID | bgeoilalcobkgmcanpbdgfckhkflblcm |
Officiële URL | https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm |
Beschrijving | Replaces the text 'home run' with 'ding dong Johnson'. |
Bestandsgrootte | 560 KB |
Aantal Installaties | 23 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2016-03-19 |
Publicatiedatum | 2016-03-19 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Colin Shevlin |
Betalingswijze | free |
Extensiewebsite | https://github.com/cwshevlin/Ding-Dong-Johnson |
Ondersteunde Talen | 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" } ] } |