Ding Dong Johnson

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

Ding Dong Johnsonคืออะไร?

Ding Dong Johnson เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Colin Shevlin และคุณลักษณะหลักของมันคือ "Replaces the text 'home run' with 'ding dong Johnson'."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ding Dong Johnson

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}