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'.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Ding Dong Johnson
قم بتنزيل ملفات الامتداد Ding Dong Johnson بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } ] } |