Local Audio Player

Play audio files from your computer directly in your browser.

Local Audio Playerとは何ですか?

Local Audio Playerはjacksteamdevによって開発されたChromeの拡張機能で、その主な機能は「Play audio files from your computer directly in your browser.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Local Audio Player拡張機能のCRXファイルをダウンロード

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 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
Eメール [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"
    ]
}