Local Audio Player
Play audio files from your computer directly in your browser.
Что такое Local Audio Player?
Local Audio Player - это расширение Chrome, разработанное jacksteamdev, и его основная функция - "Play audio files from your computer directly in your browser.".
Снимки экрана расширения
Скачать файл CRX расширения Local Audio Player
Скачайте файлы расширений Local Audio Player в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Features: - Simple design - Sleep timer - Cast audio - Remembers where you left of listening - Keyboard shortcuts for easier navigation backwards and forwards. More features coming soon! IMPORTANT: For this extension to work, you need to right-click on the extension, open Manage Extensions, scroll down and enable "Allow access to file URLs"
Основная информация о расширении
Название | Local Audio Player |
ID | cdlcldfkcgmpndknbabgmhfkeeampkcn |
Официальный URL | https://chromewebstore.google.com/detail/local-audio-player/cdlcldfkcgmpndknbabgmhfkeeampkcn |
Описание | Play audio files from your computer directly in your browser. |
Размер файла | 143 KB |
Количество установок | 778 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2019-06-20 |
Дата публикации | 2019-06-20 |
Рейтинг | 3.67/5 Всего 6 оценок |
Разработчик | jacksteamdev |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Local Audio Player", "version": "1.0.0", "description": "Play audio files from your computer directly in your browser.", "background": { "scripts": [ "patch-oninstalled.js", "background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "file:\/\/\/*.ogg", "file:\/\/\/*.mp3", "file:\/\/\/*.webm", "file:\/\/\/*.m4a" ] } ], "page_action": { "default_icon": "assets\/icon-16-5ad357f1.png", "default_title": "Local Audio Player" }, "icons": { "16": "assets\/icon-16-5ad357f1.png", "48": "assets\/icon-48-8ce6ada5.png", "128": "assets\/icon-128-078d2ce1.png" }, "permissions": [ "storage", "activeTab", "file:\/\/\/*" ], "web_accessible_resources": [ "content.js" ] } |