5 Speed Options for HTML5 videos
Allows users to store 5 different speed options and access them with keyboard shortcuts
Что такое 5 Speed Options for HTML5 videos?
5 Speed Options for HTML5 videos - это расширение Chrome, разработанное h-1, и его основная функция - "Allows users to store 5 different speed options and access them with keyboard shortcuts".
Снимки экрана расширения
Скачать файл CRX расширения 5 Speed Options for HTML5 videos
Скачайте файлы расширений 5 Speed Options for HTML5 videos в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Allows users to store 5 different speed options and access them with keyboard shortcuts.
5SpeedOptions is heavily influenced by Video Speed Controller
Developer: https://github.com/igrigorik
Video Speed Controller code: https://github.com/igrigorik/videospeed
Chrome extension: https://chrome.google.com/webstore/detail/video-speed-controller/nffaoalbilbmmfgbnbgppjihopabppdk
Icon made by Freepik from www.flaticon.com
http://www.flaticon.com/free-icon/number-5_1875 Основная информация о расширении
| Название | |
| ID | jgcledljkklfpfbidpfogmcihiphjibn |
| Официальный URL | https://chrome.google.com/webstore/detail/5-speed-options-for-html5/jgcledljkklfpfbidpfogmcihiphjibn |
| Описание | Allows users to store 5 different speed options and access them with keyboard shortcuts |
| Размер файла | 12.54 KB |
| Количество установок | 341 |
| Текущая Версия | 1.3 |
| Последнее Обновление | 2018-10-03 |
| Дата публикации | 2018-10-03 |
| Рейтинг | 4.56/5 Всего 9 оценок |
| Разработчик | h-1 |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/h-1/5SpeedOptions |
| URL страницы помощи | https://github.com/h-1/5SpeedOptions |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "5 Speed Options for HTML5 videos",
"description": "Allows users to store 5 different speed options and access them with keyboard shortcuts",
"version": "1.3",
"homepage_url": "https:\/\/github.com\/h-1\/5SpeedOptions",
"permissions": [
"storage"
],
"options_page": "options.html",
"icons": {
"16": "icons\/Number_5_16.png",
"48": "icons\/Number_5_64.png",
"128": "icons\/Number_5_128.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/Number_5_16.png",
"48": "icons\/Number_5_64.png"
},
"default_popup": "options.html"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"inject.js"
],
"css": [
"inject.css"
]
}
]
} | |