Volta

Browser extension to bring Volta experience to GitHub.

什么是Volta?

Volta是由NuxtLabs开发的Chrome扩展程序,该扩展的主要功能是“Browser extension to bring Volta experience to GitHub.”。

扩展截图

screenshot

下载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!                    

扩展基本信息

名称 Volta 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
帮助页面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'"
    }
}