Local Audio Player
Play audio files from your computer directly in your browser.
Wat is Local Audio Player?
Local Audio Player is een Chrome-extensie ontwikkeld door jacksteamdev, en de belangrijkste functie is "Play audio files from your computer directly in your browser.".
Extensie Screenshots
Download het CRX-bestand van de extensie Local Audio Player
Download Local Audio Player-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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"
Basisinformatie over de Extensie
Naam | Local Audio Player |
ID | cdlcldfkcgmpndknbabgmhfkeeampkcn |
Officiële URL | https://chromewebstore.google.com/detail/local-audio-player/cdlcldfkcgmpndknbabgmhfkeeampkcn |
Beschrijving | Play audio files from your computer directly in your browser. |
Bestandsgrootte | 143 KB |
Aantal Installaties | 778 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2019-06-20 |
Publicatiedatum | 2019-06-20 |
Beoordeling | 3.67/5 Totaal 6 Beoordelingen |
Ontwikkelaar | jacksteamdev |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |