GPlayer
Listen to Gmail's audio
Wat is GPlayer?
GPlayer is een Chrome-extensie ontwikkeld door Dinesh, en de belangrijkste functie is "Listen to Gmail's audio".
Extensie Screenshots
Download het CRX-bestand van de extensie GPlayer
Download GPlayer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | GPlayer |
ID | obdmmgdlafadeehmbmcmoggnaokehnaj |
Officiële URL | https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj |
Beschrijving | Listen to Gmail's audio |
Bestandsgrootte | 77.33 KB |
Aantal Installaties | 4,000 |
Huidige Versie | 2.60 |
Laatst Bijgewerkt | 2021-06-18 |
Publicatiedatum | 2021-06-08 |
Beoordeling | 3.56/5 Totaal 18 Beoordelingen |
Ontwikkelaar | Dinesh |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.dfa.fyi/ |
Help Pagina-URL | https://www.dfa.fyi/ |
Ondersteunde Talen | 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\/*" ] } ] } |