YouTube Spacebar pausing
Pause videos on page load with the space bar
Что такое YouTube Spacebar pausing?
YouTube Spacebar pausing - это расширение Chrome, разработанное D3.io, и его основная функция - "Pause videos on page load with the space bar".
Скачать файл CRX расширения YouTube Spacebar pausing
Скачайте файлы расширений YouTube Spacebar pausing в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This enables you to use the spacebar to pause YouTube videos as soon as the page has loaded. YouTube usually requires that you first manually pause the video by clicking the pause button before the spacebar trick works. This will enable you to use the spacebar to pause a YouTube video whenever you feel like! CHANGELOG --------- 1.3 - Fixed form focus issue, preventing you from using spaces in the search bar 1.2 - Fixed issue with pausing when writing a comment 1.1 - Fixed YouTube fullscreen issue 1.0 - Released!
Основная информация о расширении
Название | |
ID | bkpindoeklkmcchcidehelnihghppcdg |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-spacebar-pausing/bkpindoeklkmcchcidehelnihghppcdg |
Описание | Pause videos on page load with the space bar |
Размер файла | 23.57 KB |
Количество установок | 28 |
Текущая Версия | 1.3.0 |
Последнее Обновление | 2016-07-05 |
Дата публикации | 2016-07-05 |
Рейтинг | 3.38/5 Всего 13 оценок |
Разработчик | D3.io |
Тип оплаты | free |
Официальный сайт расширения | https://www.d3.io |
URL страницы помощи | https://www.d3.io/contact |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Spacebar pausing", "version": "1.3.0", "description": "Pause videos on page load with the space bar", "icons": { "48": "Icons\/Icon48.png", "128": "Icons\/Icon128.png" }, "author": "D3T Digital", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "scripts\/main.js" ], "run_at": "document_start" } ], "permissions": [ "activeTab" ], "short_name": "YouTube Spacebar pausing", "web_accessible_resources": [ "Icons\/*" ] } |