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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rishiraj.me และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coding Shout

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}