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.”。
擴展截圖
下載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 |
ID | cdlcldfkcgmpndknbabgmhfkeeampkcn |
官方網址 | 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" ] } |