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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Colab Notifier
قم بتنزيل ملفات الامتداد Colab Notifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Are you training models on Google Colaboratory and you would like to get notification when your cells finished running? Use 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 |
عنوان صفحة المساعدة | 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" ] } |