Ding Dong Johnson
Replaces the text 'home run' with 'ding dong Johnson'.
Ding Dong Johnson क्या है?
Ding Dong Johnson Colin Shevlin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces the text 'home run' with 'ding dong Johnson'."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ding Dong Johnson एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |