Ding Dong Johnson

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

Ding Dong Johnson란 무엇입니까?

Ding Dong Johnson은(는) Colin Shevlin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces the text 'home run' with 'ding dong Johnson'."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Ding Dong Johnson 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Ding Dong Johnson Ding Dong Johnson
ID bgeoilalcobkgmcanpbdgfckhkflblcm
공식 URL https://chromewebstore.google.com/detail/ding-dong-johnson/bgeoilalcobkgmcanpbdgfckhkflblcm
설명 Replaces the text 'home run' with 'ding dong Johnson'.
파일 크기 560 KB
설치 횟수 23
현재 버전 1.0
최근 업데이트 2016-03-19
출시 날짜 2016-03-19
평점 5.00/5 총 1 개의 평점
개발자 Colin Shevlin
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cwshevlin/Ding-Dong-Johnson
지원되는 언어 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"
        }
    ]
}