GPlayer

Listen to Gmail's audio

What is GPlayer?

GPlayer is a Chrome extension developed by Dinesh, and its main feature is "Listen to Gmail's audio".

Extension Screenshots

screenshot

Download GPlayer Extension CRX File

Download GPlayer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GPlayer GPlayer
ID obdmmgdlafadeehmbmcmoggnaokehnaj
Official URL https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj
Description Listen to Gmail's audio
File Size 77.33 KB
Installation Count 4,000
Current Version 2.60
Last Updated 2021-06-18
Publish Date 2021-06-08
Rating 3.56/5 Total 18 Ratings
Developer Dinesh
Email [email protected]
Payment Type free
Extension Website https://www.dfa.fyi/
Help Page URL https://www.dfa.fyi/
Supported Languages 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\/*"
            ]
        }
    ]
}