GPlayer
Listen to Gmail's audio
Apa itu GPlayer?
GPlayer adalah ekstensi Chrome yang dikembangkan oleh Dinesh, dan fitur utamanya adalah "Listen to Gmail's audio".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi GPlayer
Unduh file ekstensi GPlayer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | GPlayer |
ID | obdmmgdlafadeehmbmcmoggnaokehnaj |
URL Resmi | https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj |
Deskripsi | Listen to Gmail's audio |
Ukuran File | 77.33 KB |
Jumlah Instalasi | 4,000 |
Versi Saat Ini | 2.60 |
Terakhir Diperbarui | 2021-06-18 |
Tanggal Publikasi | 2021-06-08 |
Penilaian | 3.56/5 Total 18 Penilaian |
Pengembang | Dinesh |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.dfa.fyi/ |
URL Halaman Bantuan | https://www.dfa.fyi/ |
Bahasa yang Didukung | 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\/*" ] } ] } |