Local Audio Player

Play audio files from your computer directly in your browser.

What is Local Audio Player?

Local Audio Player is a Chrome extension developed by jacksteamdev, and its main feature is "Play audio files from your computer directly in your browser.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Local Audio Player Extension CRX File

Download Local Audio Player extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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"                    

Extension Basic Information

Name Local Audio Player Local Audio Player
ID cdlcldfkcgmpndknbabgmhfkeeampkcn
Official URL https://chromewebstore.google.com/detail/local-audio-player/cdlcldfkcgmpndknbabgmhfkeeampkcn
Description Play audio files from your computer directly in your browser.
File Size 143 KB
Installation Count 778
Current Version 1.0.0
Last Updated 2019-06-20
Publish Date 2019-06-20
Rating 3.67/5 Total 6 Ratings
Developer jacksteamdev
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}