Ding Dong Johnson

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

Was ist Ding Dong Johnson?

Ding Dong Johnson ist eine Chrome-Erweiterung, die von Colin Shevlin entwickelt wurde, und ihr Hauptmerkmal ist "Replaces the text 'home run' with 'ding dong Johnson'.".

Erweiterungsscreenshots

screenshot
screenshot

Ding Dong Johnson-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ding Dong Johnson-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Ding Dong Johnson Ding Dong Johnson
ID bgeoilalcobkgmcanpbdgfckhkflblcm
Offizielle URL https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm
Beschreibung Replaces the text 'home run' with 'ding dong Johnson'.
Dateigröße 560 KB
Installationsanzahl 23
Aktuelle Version 1.0
Letztes Update 2016-03-19
Veröffentlichungsdatum 2016-03-19
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Colin Shevlin
Zahlungsart free
Erweiterungswebsite https://github.com/cwshevlin/Ding-Dong-Johnson
Unterstützte Sprachen 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"
        }
    ]
}