GPlayer

Listen to Gmail's audio

GPlayerคืออะไร?

GPlayer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dinesh และคุณลักษณะหลักของมันคือ "Listen to Gmail's audio"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPlayer

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
            ]
        }
    ]
}