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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } |