Local Audio Player
Play audio files from your computer directly in your browser.
Co to jest Local Audio Player?
Local Audio Player to rozszerzenie Chrome opracowane przez jacksteamdev, a jego główną funkcją jest „Play audio files from your computer directly in your browser.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Local Audio Player
Pobierz pliki rozszerzeń Local Audio Player w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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"
Podstawowe informacje o rozszerzeniu
Nazwa | Local Audio Player |
ID | cdlcldfkcgmpndknbabgmhfkeeampkcn |
Oficjalny URL | https://chromewebstore.google.com/detail/local-audio-player/cdlcldfkcgmpndknbabgmhfkeeampkcn |
Opis | Play audio files from your computer directly in your browser. |
Rozmiar pliku | 143 KB |
Liczba instalacji | 778 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2019-06-20 |
Data Publikacji | 2019-06-20 |
Ocena | 3.67/5 Łącznie 6 Oceny |
Deweloper | jacksteamdev |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |