Jupyter Coder
Capture data in Jupyter Notebook cells and send to a remote server.
ما هو Jupyter Coder؟
Jupyter Coder هو إضافة Chrome تم تطويرها بواسطة jupytercoder0765، والميزة الرئيسية لها هي "Capture data in Jupyter Notebook cells and send to a remote server.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Jupyter Coder
قم بتنزيل ملفات الامتداد Jupyter Coder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
When in jupyter notebook, the plugin performs code auto-completion using the starcoder model Follow https://github.com/bigcode-project/jupytercoder to provide your hf read only api key. Feel free to contribute !
معلومات أساسية عن التمديد
الاسم | Jupyter Coder |
ID | kbedojkmlknhepcaggkdimefcbiifkjf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf |
الوصف | Capture data in Jupyter Notebook cells and send to a remote server. |
حجم الملف | 649 KB |
عدد التثبيتات | 232 |
النسخة الحالية | 0.2.0.0 |
آخر تحديث | 2023-06-12 |
تاريخ النشر | 2023-04-26 |
المطور | jupytercoder0765 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Jupyter Coder", "version": "0.2.0.0", "description": "Capture data in Jupyter Notebook cells and send to a remote server.", "icons": { "32": "icons\/flow_64.png", "48": "icons\/flow_128.png", "128": "icons\/flow_256.png" }, "permissions": [ "storage" ], "action": { "default_popup": "options\/options.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/api.js", "src\/state.js", "src\/preferences.js", "src\/utility.js", "src\/animation.js", "src\/diff.js", "src\/content.js" ], "css": [ "options\/styles.css" ], "run_at": "document_end" } ] } |