GPlayer
Listen to Gmail's audio
ما هو GPlayer؟
GPlayer هو إضافة Chrome تم تطويرها بواسطة Dinesh، والميزة الرئيسية لها هي "Listen to Gmail's audio".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GPlayer
قم بتنزيل ملفات الامتداد GPlayer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
GMail's audio attachments started failing to play with Google Chrome 91.0.4472.77. The console shows: Refused to load media from 'https://mail.google.com/mail/u/...' because it violates the following Content Security Policy directive: "media-src https://*.googlevideo.com/videoplayback/". Seems that GMail isn't following the newly activated CSPs. Until Google fixes it, this simple extension resolves the problem.
معلومات أساسية عن التمديد
الاسم | GPlayer |
ID | obdmmgdlafadeehmbmcmoggnaokehnaj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj |
الوصف | Listen to Gmail's audio |
حجم الملف | 77.33 KB |
عدد التثبيتات | 4,000 |
النسخة الحالية | 2.60 |
آخر تحديث | 2021-06-18 |
تاريخ النشر | 2021-06-08 |
تقييم | 3.56/5 مجموع تقييمات 18 |
المطور | Dinesh |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.dfa.fyi/ |
عنوان صفحة المساعدة | https://www.dfa.fyi/ |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPlayer", "description": "Listen to Gmail's audio", "version": "2.60", "icons": { "128": "icon.png", "16": "icon.png", "48": "icon.png" }, "content_scripts": [ { "js": [ "audioplayer.js", "videocontext.js", "main.js" ], "css": [ "audioplayer.css", "videoplayer.css" ], "matches": [ "https:\/\/mail.google.com\/*", "http:\/\/mail.google.com\/*" ], "run_at": "document_start" } ], "host_permissions": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*", "https:\/\/mail-attachment.googleusercontent.com\/*" ], "web_accessible_resources": [ { "resources": [ "play.png", "pause.png", "volume-up.png" ], "matches": [ "https:\/\/mail.google.com\/*", "http:\/\/mail.google.com\/*" ] } ] } |