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 |
官方網址 | 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" } ] } |