HoverPlay
Easier interaction with audio links on the web.
Что такое HoverPlay?
HoverPlay - это расширение Chrome, разработанное Unknown, и его основная функция - "Easier interaction with audio links on the web.".
Снимки экрана расширения
Скачать файл CRX расширения HoverPlay
Скачайте файлы расширений HoverPlay в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Just hover over an audio link let HoverPlay do the rest! An audio player will appear in the bottom right of the page. When the audio player is on the screen, use spacebar to play and pause the audio and esc to remove the player.
Основная информация о расширении
Название | HoverPlay |
ID | hkbbcjmckhhnpniafekogpfonhiomnal |
Официальный URL | https://chromewebstore.google.com/detail/hoverplay/hkbbcjmckhhnpniafekogpfonhiomnal |
Описание | Easier interaction with audio links on the web. |
Размер файла | 53.72 KB |
Количество установок | 472 |
Текущая Версия | 1.0.4 |
Последнее Обновление | 2013-02-25 |
Дата публикации | 2013-02-24 |
Рейтинг | 4.40/5 Всего 10 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "HoverPlay", "version": "1.0.4", "manifest_version": 2, "description": "Easier interaction with audio links on the web.", "background": { "scripts": [ "jquery.js", "bg.js" ] }, "options_page": "options\/options.html", "icons": { "48": "icons\/hoverplay48.png", "128": "icons\/hoverplay128.png" }, "page_action": { "default_icon": "icons\/hoverplay38.png", "default_title": "Disable HoverPlay", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "jquery-ui.min.js", "contentscript.js" ], "css": [ "content.css" ] } ], "permissions": [ "tabs" ] } |