FullTube
This a extension to maximize the youtube player size.
Что такое FullTube?
FullTube - это расширение Chrome, разработанное https://bijinapps.blogspot.com, и его основная функция - "This a extension to maximize the youtube player size.".
Снимки экрана расширения
Скачать файл CRX расширения FullTube
Скачайте файлы расширений FullTube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
Основная информация о расширении
Название | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
Официальный URL | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
Описание | This a extension to maximize the youtube player size. |
Размер файла | 6.46 KB |
Количество установок | 13 |
Текущая Версия | 1.9 |
Последнее Обновление | 2019-04-18 |
Дата публикации | 2019-04-18 |
Разработчик | https://bijinapps.blogspot.com |
Тип оплаты | free |
Официальный сайт расширения | http://www.bijinapps.blogspot.in |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FullTube", "version": "1.9", "description": "This a extension to maximize the youtube player size.", "icons": { "48": "icons\/youtube.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?v=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&t=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_t.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?time_continue=*&v=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_tc.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_pt.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&**" ], "js": [ "fulltube_pt.js" ], "run_at": "document_start" } ] } |