Watch Timer for Youtube and Netflix

Youtube and Netflix watch time logging tool

Что такое Watch Timer for Youtube and Netflix?

Watch Timer for Youtube and Netflix - это расширение Chrome, разработанное Unknown, и его основная функция - "Youtube and Netflix watch time logging tool".

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

screenshot
screenshot

Скачать файл CRX расширения Watch Timer for Youtube and Netflix

Скачайте файлы расширений Watch Timer for Youtube and Netflix в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This extension would help you keep track of the number of hours and minutes you spend on Youtube and Netflix. I built this because it was something I needed and didn't find. 

You can use this tool to better manage the time spent on these web applications.                    

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

Название Watch Timer for Youtube and Netflix Watch Timer for Youtube and Netflix
ID bmmidcdclpkbhikdmcedijejmpcfkikn
Официальный URL https://chromewebstore.google.com/detail/watch-timer-for-youtube-a/bmmidcdclpkbhikdmcedijejmpcfkikn
Описание Youtube and Netflix watch time logging tool
Размер файла 31.44 KB
Количество установок 20
Текущая Версия 1.0.3
Последнее Обновление 2020-05-15
Дата публикации 2020-05-15
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Watch Timer for Youtube and Netflix",
    "version": "1.0.3",
    "description": "Youtube and Netflix watch time logging tool",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content.js",
                "index.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "index.html"
    }
}