Ding Dong Johnson
Replaces the text 'home run' with 'ding dong Johnson'.
Hvad er Ding Dong Johnson?
Ding Dong Johnson er en Chrome-udvidelse udviklet af Colin Shevlin, og dens hovedfunktion er "Replaces the text 'home run' with 'ding dong Johnson'.".
Udvidelsesskærmbilleder
Download Ding Dong Johnson-udvidelses-CRX-fil
Download Ding Dong Johnson-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Ding Dong Johnson |
ID | bgeoilalcobkgmcanpbdgfckhkflblcm |
Officiel URL | https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm |
Beskrivelse | Replaces the text 'home run' with 'ding dong Johnson'. |
Filstørrelse | 560 KB |
Antal Installationer | 23 |
Nuværende Version | 1.0 |
Senest Opdateret | 2016-03-19 |
Udgivelsesdato | 2016-03-19 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Colin Shevlin |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/cwshevlin/Ding-Dong-Johnson |
Understøttede Sprog | 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" } ] } |