YouTube Line
Locks the YouTube player timeline
Что такое YouTube Line?
YouTube Line - это расширение Chrome, разработанное Light Alex, и его основная функция - "Locks the YouTube player timeline".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Line
Скачайте файлы расширений YouTube Line в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extension locks the YouTube player timeline. Now when player controls disappear, you can see the video timeline.
Основная информация о расширении
Название | YouTube Line |
ID | olpncmboeipmdokpobmfjohclhaefofm |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-line/olpncmboeipmdokpobmfjohclhaefofm |
Описание | Locks the YouTube player timeline |
Размер файла | 110 KB |
Количество установок | 1,320 |
Текущая Версия | 1.0.3.1 |
Последнее Обновление | 2021-04-25 |
Дата публикации | 2019-04-15 |
Рейтинг | 4.75/5 Всего 28 оценок |
Разработчик | Light Alex |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://addons.lightalex.com/?source=chrome_store |
Поддерживаемые языки | en,ru,uk |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Line", "short_name": "__MSG_description__", "description": "__MSG_description__", "default_locale": "en", "version": "1.0.3.1", "author": "Light Alex", "options_page": "options.html", "icons": { "48": "icons\/48.png", "64": "icons\/64.png", "128": "icons\/128.png", "256": "icons\/256.png" }, "browser_action": { "default_icon": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png" } }, "background": { "scripts": [ "files\/script\/background.js" ] }, "permissions": [ "tabs", "http:\/\/youtube.com\/*", "https:\/\/youtube.com\/*", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*" ], "css": [ "files\/css\/style.css" ], "js": [ "files\/script\/jquery-3.2.1.min.js", "files\/script\/postload.js" ] } ] } |