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'.」です。
拡張機能のスクリーンショット
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 |
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" } ] } |