GPlayer
Listen to Gmail's audio
什麼是GPlayer?
GPlayer是由Dinesh開發的Chrome擴展程式,該擴展的主要功能是“Listen to Gmail's audio”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | obdmmgdlafadeehmbmcmoggnaokehnaj |
| 官方網址 | 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\/*"
]
}
]
} | |