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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |