GPlayer

Listen to Gmail's audio

什么是GPlayer?

GPlayer是由Dinesh开发的Chrome扩展程序,该扩展的主要功能是“Listen to Gmail's audio”。

扩展截图

screenshot

下载GPlayer扩展crx文件

下载GPlayer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 GPlayer GPlayer
ID obdmmgdlafadeehmbmcmoggnaokehnaj
官方URL https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj
简介 Listen to Gmail's audio
文件大小 77.33 KB
安装次数 4,000
当前版本 2.60
更新时间 2021-06-18
上架时间 2021-06-08
评分 3.56/5 共18次评分
开发者 Dinesh
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.dfa.fyi/
帮助页面URL https://www.dfa.fyi/
支持的语言 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\/*"
            ]
        }
    ]
}