Volta
Browser extension to bring Volta experience to GitHub.
ما هو Volta؟
Volta هو إضافة Chrome تم تطويرها بواسطة NuxtLabs، والميزة الرئيسية لها هي "Browser extension to bring Volta experience to GitHub.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Volta
قم بتنزيل ملفات الامتداد Volta بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The Volta extension brings features right inside GitHub: - Assign status to issues and pull requests - Set milestones - Open the issue or repository on Volta - Read notifications And much more!
معلومات أساسية عن التمديد
الاسم | Volta |
ID | dbegojmfekcfbclcgocceflbklfoomjo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/volta/dbegojmfekcfbclcgocceflbklfoomjo |
الوصف | Browser extension to bring Volta experience to GitHub. |
حجم الملف | 71.94 KB |
عدد التثبيتات | 162 |
النسخة الحالية | 0.0.5 |
آخر تحديث | 2023-04-13 |
تاريخ النشر | 2023-03-24 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | NuxtLabs |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://volta.net |
عنوان صفحة المساعدة | https://volta.net/volta-net/feedback |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Volta", "version": "0.0.5", "description": "Browser extension to bring Volta experience to GitHub.", "action": { "default_icon": { "16": ".\/assets\/icon-16.png", "32": ".\/assets\/icon-32.png", "48": ".\/assets\/icon-48.png", "128": ".\/assets\/icon-128.png" }, "default_popup": ".\/dist\/popup\/index.html" }, "background": { "service_worker": ".\/dist\/background\/index.mjs" }, "icons": { "16": ".\/assets\/icon-16.png", "32": ".\/assets\/icon-32.png", "48": ".\/assets\/icon-48.png", "128": ".\/assets\/icon-128.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/github.com\/*", "https:\/\/volta.net\/*", "https:\/\/api.volta.net\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/github.com\/*", "https:\/\/volta.net\/*" ], "js": [ ".\/dist\/contentScripts\/index.global.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/icon.svg", "assets\/mdi\/*.svg", "assets\/octicon\/*.svg" ], "matches": [ "https:\/\/github.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |