Youtube Eye: Find popular (month, year, etc)

Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.

Что такое Youtube Eye: Find popular (month, year, etc)?

Youtube Eye: Find popular (month, year, etc) - это расширение Chrome, разработанное Polywocker, и его основная функция - "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.".

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

screenshot
screenshot

Скачать файл CRX расширения Youtube Eye: Find popular (month, year, etc)

Скачайте файлы расширений Youtube Eye: Find popular (month, year, etc) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Features
----------------------
1. Find a Youtube channel's most popular videos from the past month, year, or any date range. 
2. Search Youtube comments. 

Usage
----------------------
The user must supply their own Youtube API key. Very simple to get, a Youtube walkthrough linked below.

Walkthrough: https://www.youtube.com/watch?v=FpXkDHNyMrE

Source code: https://github.com/polywock/youtubeEye                    

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

Название Youtube Eye: Find popular (month, year, etc) Youtube Eye: Find popular (month, year, etc)
ID jbeakaahnhfmchihleconjmaghpljjoa
Официальный URL https://chromewebstore.google.com/detail/youtube-eye-find-popular/jbeakaahnhfmchihleconjmaghpljjoa
Описание Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.
Размер файла 73.46 KB
Количество установок 168
Текущая Версия 0.0.7
Последнее Обновление 2022-05-22
Дата публикации 2021-07-18
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Polywocker
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/polywock/youtubeEye
URL страницы помощи https://github.com/polywock/youtubeEye/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Eye: Find popular (month, year, etc)",
    "short_name": "Youtube Eye",
    "version": "0.0.7",
    "description": "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.",
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "preamble.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": ".\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "main.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ]
}