Coding Shout

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

Cos'è Coding Shout?

Coding Shout è un'estensione di Chrome sviluppata da https://rishiraj.me, e la sua funzione principale è "Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Coding Shout

Scarica i file di estensione Coding Shout in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Coding Shout Coding Shout
ID nggokghmfinpljihgjkkbogpgbbjjjme
URL Ufficiale https://chromewebstore.google.com/detail/coding-shout/nggokghmfinpljihgjkkbogpgbbjjjme
Descrizione Stop staring at your screen waiting for the result to pop up. Relax and let this extension notify you with the results
Dimensione del File 13.94 KB
Conteggio Installazioni 517
Versione Corrente 1.7
Ultimo Aggiornamento 2019-01-16
Data di Pubblicazione 2019-01-16
Valutazione 4.38/5 Totale 8 Valutazioni
Sviluppatore https://rishiraj.me
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}