GPlayer
Listen to Gmail's audio
Hvad er GPlayer?
GPlayer er en Chrome-udvidelse udviklet af Dinesh, og dens hovedfunktion er "Listen to Gmail's audio".
Udvidelsesskærmbilleder
Download GPlayer-udvidelses-CRX-fil
Download GPlayer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | GPlayer |
ID | obdmmgdlafadeehmbmcmoggnaokehnaj |
Officiel URL | https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj |
Beskrivelse | Listen to Gmail's audio |
Filstørrelse | 77.33 KB |
Antal Installationer | 4,000 |
Nuværende Version | 2.60 |
Senest Opdateret | 2021-06-18 |
Udgivelsesdato | 2021-06-08 |
Bedømmelse | 3.56/5 Samlet 18 Bedømmelser |
Udvikler | Dinesh |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.dfa.fyi/ |
Hjælpeside-URL | https://www.dfa.fyi/ |
Understøttede Sprog | 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\/*" ] } ] } |