Youtube Fix Ctrl+F

Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.

Что такое Youtube Fix Ctrl+F?

Youtube Fix Ctrl+F - это расширение Chrome, разработанное https://ursuscode.com, и его основная функция - "Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.".

Скачать файл CRX расширения Youtube Fix Ctrl+F

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

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

                        Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.

There are no menus involved. Just install and the plugin will take care of the rest.

Tested on Windows.                    

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

Название Youtube Fix Ctrl+F Youtube Fix Ctrl+F
ID kieifoemlhfnemoeeacmjpebghfbdhkd
Официальный URL https://chromewebstore.google.com/detail/youtube-fix-ctrl+f/kieifoemlhfnemoeeacmjpebghfbdhkd
Описание Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.
Размер файла 17.35 KB
Количество установок 82
Текущая Версия 0.0.1
Последнее Обновление 2017-06-18
Дата публикации 2017-06-18
Рейтинг 3.33/5 Всего 3 оценок
Разработчик https://ursuscode.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://ursuscode.com/chrome-extensions/youtube-fix-ctrlf/
URL страницы помощи https://ursuscode.com/chrome-extensions/youtube-fix-ctrlf/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Fix Ctrl+F",
    "version": "0.0.1",
    "author": "Adolfo Garza (borncorp)",
    "manifest_version": 2,
    "description": "Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.",
    "homepage_url": "https:\/\/ursuscode.com\/chrome-extensions\/youtube-fix-ctrlf\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png"
    },
    "default_locale": "en",
    "permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}