Ding Dong Johnson

Replaces the text 'home run' with 'ding dong Johnson'.

What is Ding Dong Johnson?

Ding Dong Johnson is a Chrome extension developed by Colin Shevlin, and its main feature is "Replaces the text 'home run' with 'ding dong Johnson'.".

Extension Screenshots

screenshot
screenshot

Download Ding Dong Johnson Extension CRX File

Download Ding Dong Johnson extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Ding Dong Johnson Ding Dong Johnson
ID bgeoilalcobkgmcanpbdgfckhkflblcm
Official URL https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm
Description Replaces the text 'home run' with 'ding dong Johnson'.
File Size 560 KB
Installation Count 23
Current Version 1.0
Last Updated 2016-03-19
Publish Date 2016-03-19
Rating 5.00/5 Total 1 Ratings
Developer Colin Shevlin
Payment Type free
Extension Website https://github.com/cwshevlin/Ding-Dong-Johnson
Supported Languages 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"
        }
    ]
}