Ding Dong Johnson
Replaces the text 'home run' with 'ding dong Johnson'.
Vad är Ding Dong Johnson?
Ding Dong Johnson är en Chrome-tillägg utvecklad av Colin Shevlin, och dess huvudfunktion är "Replaces the text 'home run' with 'ding dong Johnson'.".
Tilläggsskärmbilder
Ladda ner Ding Dong Johnson-förlängningens CRX-fil
Ladda ner Ding Dong Johnson-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
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äggande Information om Tillägg
Namn | Ding Dong Johnson |
ID | bgeoilalcobkgmcanpbdgfckhkflblcm |
Officiell webbadress | https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm |
Beskrivning | Replaces the text 'home run' with 'ding dong Johnson'. |
Filstorlek | 560 KB |
Antal Installationer | 23 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2016-03-19 |
Publiceringsdatum | 2016-03-19 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Colin Shevlin |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/cwshevlin/Ding-Dong-Johnson |
Stödda Språk | 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" } ] } |