GPlayer
Listen to Gmail's audio
GPlayer là gì?
GPlayer là một tiện ích mở rộng Chrome được phát triển bởi Dinesh, và tính năng chính của nó là "Listen to Gmail's audio".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GPlayer
Tải xuống các tệp mở rộng GPlayer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GPlayer |
ID | obdmmgdlafadeehmbmcmoggnaokehnaj |
URL Chính Thức | https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj |
Mô tả | Listen to Gmail's audio |
Kích Thước Tệp | 77.33 KB |
Số Lần Cài Đặt | 4,000 |
Phiên Bản Hiện Tại | 2.60 |
Cập Nhật Lần Cuối | 2021-06-18 |
Ngày Phát Hành | 2021-06-08 |
Đánh Giá | 3.56/5 Tổng số 18 Đánh Giá |
Nhà Phát Triển | Dinesh |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.dfa.fyi/ |
URL Trang Trợ Giúp | https://www.dfa.fyi/ |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |