Ding Dong Johnson

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

Qu'est-ce que Ding Dong Johnson ?

Ding Dong Johnson est une extension Chrome développée par Colin Shevlin, et sa fonction principale est "Replaces the text 'home run' with 'ding dong Johnson'.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Ding Dong Johnson

Téléchargez les fichiers d'extension Ding Dong Johnson au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Ding Dong Johnson Ding Dong Johnson
ID bgeoilalcobkgmcanpbdgfckhkflblcm
URL Officiel https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm
Description Replaces the text 'home run' with 'ding dong Johnson'.
Taille du Fichier 560 KB
Nombre d'Installations 23
Version Actuelle 1.0
Dernière Mise à Jour 2016-03-19
Date de Publication 2016-03-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur Colin Shevlin
Type de Paiement free
Site Web de l'Extension https://github.com/cwshevlin/Ding-Dong-Johnson
Langues Prises en Charge 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"
        }
    ]
}