I don't have time for Bamboo

Extensions to help filling Bamboo Timesheet

Что такое I don't have time for Bamboo?

I don't have time for Bamboo - это расширение Chrome, разработанное jgibo, и его основная функция - "Extensions to help filling Bamboo Timesheet".

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

screenshot

Скачать файл CRX расширения I don't have time for Bamboo

Скачайте файлы расширений I don't have time for Bamboo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        When you really don't have time for Bamboo                    

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

Название I don't have time for Bamboo I don't have time for Bamboo
ID ocfjhmgjhfoalcikmangkoleljladdal
Официальный URL https://chromewebstore.google.com/detail/i-dont-have-time-for-bamb/ocfjhmgjhfoalcikmangkoleljladdal
Описание Extensions to help filling Bamboo Timesheet
Размер файла 89.22 KB
Количество установок 68
Текущая Версия 1.2.0
Последнее Обновление 2022-11-29
Дата публикации 2022-04-16
Рейтинг 5.00/5 Всего 3 оценок
Разработчик jgibo
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/andresusanto/i-dont-have-time-for-bamboo
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "I don't have time for Bamboo",
    "description": "Extensions to help filling Bamboo Timesheet",
    "version": "1.2.0",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bamboohr.com\/employees\/timesheet*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/*.bamboohr.com\/*"
    ],
    "content_security_policy": {
        "extension_page": "script-src 'unsafe-inline'"
    }
}