Local Audio Player
Play audio files from your computer directly in your browser.
Local Audio Playerคืออะไร?
Local Audio Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jacksteamdev และคุณลักษณะหลักของมันคือ "Play audio files from your computer directly in your browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Local Audio Player
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
อีเมล | [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" ] } |