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によって開発されたChromeの拡張機能で、その主な機能は「Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results」です。
拡張機能のスクリーンショット
Coding Shout拡張機能のCRXファイルをダウンロード
Coding Shout拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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\/*" ] } |