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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |