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文件

下载Ding Dong Johnson扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}