GPlayer
Listen to Gmail's audio
Cos'è GPlayer?
GPlayer è un'estensione di Chrome sviluppata da Dinesh, e la sua funzione principale è "Listen to Gmail's audio".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GPlayer
Scarica i file di estensione GPlayer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GPlayer |
ID | obdmmgdlafadeehmbmcmoggnaokehnaj |
URL Ufficiale | https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj |
Descrizione | Listen to Gmail's audio |
Dimensione del File | 77.33 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 2.60 |
Ultimo Aggiornamento | 2021-06-18 |
Data di Pubblicazione | 2021-06-08 |
Valutazione | 3.56/5 Totale 18 Valutazioni |
Sviluppatore | Dinesh |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.dfa.fyi/ |
URL della Pagina di Aiuto | https://www.dfa.fyi/ |
Lingue Supportate | 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\/*" ] } ] } |