Coding Shout
Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results
Coding Shout क्या है?
Coding Shout https://rishiraj.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Coding Shout एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Frustrated of staring at your screen waiting for the result of your submission on online competitive coding judges to pop up? Relax and let this extension notify you as soon as the results appear. It uses text to speech to say the result, or if you prefer being silently notified, there is an option for that too. Supported judges: * Codechef * Codeforces * AtCoder (Beta) - thanks to Michal Švagerka The source code is available on https://github.com/RishiRaj22/codechef_shout Feel free to leave some stars. Enjoy coding!
एक्सटेंशन की मूल जानकारी
नाम | Coding Shout |
ID | nggokghmfinpljihgjkkbogpgbbjjjme |
आधिकारिक URL | https://chromewebstore.google.com/detail/coding-shout/nggokghmfinpljihgjkkbogpgbbjjjme |
विवरण | Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results |
फ़ाइल का आकार | 13.94 KB |
स्थापना संख्या | 517 |
वर्तमान संस्करण | 1.7 |
अंतिम अपडेट | 2019-01-16 |
प्रकाशन तिथि | 2019-01-16 |
रेटिंग | 4.38/5 कुल 8 रेटिंग्स |
डेवलपर | https://rishiraj.me |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Coding Shout", "description": "Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results", "version": "1.7", "manifest_version": 2, "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.codeforces.com\/*\/my" ], "run_at": "document_idle", "js": [ "codeforces.js" ] }, { "matches": [ "*:\/\/*.atcoder.jp\/contests\/*\/submissions\/me" ], "run_at": "document_idle", "js": [ "atcoder.js" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "browser_action": { "default_popup": "options.html", "default_icon": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png" } }, "background": { "scripts": [ "script.js" ], "persistent": true }, "permissions": [ "notifications", "storage", "tts", "webRequest", "*:\/\/*.codechef.com\/submit\/complete\/*", "*:\/\/*.codechef.com\/get_submission_status\/*" ] } |