Volta
Browser extension to bring Volta experience to GitHub.
Voltaとは何ですか?
VoltaはNuxtLabsによって開発されたChromeの拡張機能で、その主な機能は「Browser extension to bring Volta experience to GitHub.」です。
拡張機能のスクリーンショット
Volta拡張機能のCRXファイルをダウンロード
Volta拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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! 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://volta.net |
| ヘルプページのURL | 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'"
}
} | |