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 |
| 公式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 |
| Eメール | [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\/*"
]
}
]
} | |