Colab Notifier

Notifies you when longer running code cells are finished

Colab Notifierคืออะไร?

Colab Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย baran yildirim และคุณลักษณะหลักของมันคือ "Notifies you when longer running code cells are finished"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Colab Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Are you training models on Google Colaboratory and you would like to get notification when your cells finished running? Use colab notifier!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
คำอธิบาย Notifies you when longer running code cells are finished
ขนาดไฟล์ 215 KB
จำนวนการติดตั้ง 830
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2020-04-08
วันที่เผยแพร่ 2020-04-08
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา baran yildirim
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/naraB/colab-notifier
URL หน้าช่วยเหลือ https://github.com/naraB/colab-notifier
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Colab Notifier",
    "description": "Notifies you when longer running code cells are finished",
    "version": "1.2",
    "permissions": [
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_title": "colab notifier"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/assets\/icons\/icon-16px.png",
        "48": ".\/assets\/icons\/icon-48px.png",
        "128": ".\/assets\/icons\/icon-128px.png"
    },
    "web_accessible_resources": [
        ".\/assets\/icons\/timer-24px.svg"
    ]
}