Volta
Browser extension to bring Volta experience to GitHub.
What is Volta?
Volta is a Chrome extension developed by NuxtLabs, and its main feature is "Browser extension to bring Volta experience to GitHub.".
Extension Screenshots
Download Volta Extension CRX File
Download Volta extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Volta |
ID | dbegojmfekcfbclcgocceflbklfoomjo |
Official URL | https://chromewebstore.google.com/detail/volta/dbegojmfekcfbclcgocceflbklfoomjo |
Description | Browser extension to bring Volta experience to GitHub. |
File Size | 71.94 KB |
Installation Count | 162 |
Current Version | 0.0.5 |
Last Updated | 2023-04-13 |
Publish Date | 2023-03-24 |
Rating | 5.00/5 Total 2 Ratings |
Developer | NuxtLabs |
[email protected] | |
Payment Type | free |
Extension Website | https://volta.net |
Help Page URL | https://volta.net/volta-net/feedback |
Supported Languages | 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'" } } |