Git Harvest

Provides Harvest time tracking widgets in Gitlab and Github.

Что такое Git Harvest?

Git Harvest - это расширение Chrome, разработанное andyg5000, и его основная функция - "Provides Harvest time tracking widgets in Gitlab and Github.".

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

screenshot

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

Скачайте файлы расширений Git Harvest в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Provides Harvest time tracking in GitLab and Github issues. Hosted versions are supported out of the box. Self-hosted versions can be added in the extension settings. 

Source: https://gitlab.com/blueoakinteractive/gitlab-harvest/                    

Основная информация о расширении

Название Git Harvest Git Harvest
ID ofbfhaiknhlanbliolbkiidknakaldmo
Официальный URL https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo
Описание Provides Harvest time tracking widgets in Gitlab and Github.
Размер файла 369 KB
Количество установок 340
Текущая Версия 0.0.27
Последнее Обновление 2023-06-09
Дата публикации 2020-03-22
Рейтинг 4.00/5 Всего 1 оценок
Разработчик andyg5000
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://gitlab.com/blueoakinteractive/gitlab-harvest/
URL страницы помощи https://gitlab.com/blueoakinteractive/gitlab-harvest/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.27",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*\/*\/issues\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "frame.html",
        "scripts\/frame.js",
        "styles\/frame.css"
    ],
    "content_security_policy": "report-uri \/csp_reports; img-src *; object-src 'self'; frame-src https:\/\/*.harvestapp.com; script-src 'self'; style-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    }
}