Ding Dong Johnson

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

Co to jest Ding Dong Johnson?

Ding Dong Johnson to rozszerzenie Chrome opracowane przez Colin Shevlin, a jego główną funkcją jest „Replaces the text 'home run' with 'ding dong Johnson'.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Ding Dong Johnson

Pobierz pliki rozszerzeń Ding Dong Johnson w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Ding Dong Johnson Ding Dong Johnson
ID bgeoilalcobkgmcanpbdgfckhkflblcm
Oficjalny URL https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm
Opis Replaces the text 'home run' with 'ding dong Johnson'.
Rozmiar pliku 560 KB
Liczba instalacji 23
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-03-19
Data Publikacji 2016-03-19
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Colin Shevlin
Typ Płatności free
Strona Rozszerzenia https://github.com/cwshevlin/Ding-Dong-Johnson
Obsługiwane Języki 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"
        }
    ]
}