Coding Shout

Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results

¿Qué es Coding Shout?

Coding Shout es una extensión de Chrome desarrollada por https://rishiraj.me, y su función principal es "Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Coding Shout

Descarga archivos de extensión Coding Shout en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Coding Shout Coding Shout
ID nggokghmfinpljihgjkkbogpgbbjjjme
URL Oficial https://chromewebstore.google.com/detail/coding-shout/nggokghmfinpljihgjkkbogpgbbjjjme
Descripción Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results
Tamaño del Archivo 13.94 KB
Cantidad de Instalaciones 517
Versión Actual 1.7
Última Actualización 2019-01-16
Fecha de Publicación 2019-01-16
Calificación 4.38/5 Total de 8 Calificaciones
Desarrollador https://rishiraj.me
Tipo de Pago free
Idiomas Soportados 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\/*"
    ]
}