Volta

Browser extension to bring Volta experience to GitHub.

Что такое Volta?

Volta - это расширение Chrome, разработанное NuxtLabs, и его основная функция - "Browser extension to bring Volta experience to GitHub.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Volta

Скачайте файлы расширений 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'"
    }
}