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”。

扩展截图

screenshot
screenshot
screenshot

下载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 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\/*"
    ]
}