Gamefinder

Finds what games youtube video pages feature.

Что такое Gamefinder?

Gamefinder - это расширение Chrome, разработанное Brancu Alexandru, и его основная функция - "Finds what games youtube video pages feature.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to view what game is featured in any video on most pages of youtube before clicking on it.                    

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

Название Gamefinder Gamefinder
ID jlgipnmimogpomfpobemgdddbfnkkdbp
Официальный URL https://chromewebstore.google.com/detail/gamefinder/jlgipnmimogpomfpobemgdddbfnkkdbp
Описание Finds what games youtube video pages feature.
Размер файла 13.36 KB
Количество установок 29
Текущая Версия 1.0
Последнее Обновление 2023-01-18
Дата публикации 2022-09-16
Разработчик Brancu Alexandru
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gamefinder",
    "description": "Finds what games youtube video pages feature.",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "128": "favicon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scriptLoader.js"
            ]
        }
    ],
    "permissions": [],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "subscriptions.js",
                "recommended.js",
                "home.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}