GPlayer
Listen to Gmail's audio
GPlayer क्या है?
GPlayer Dinesh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Listen to Gmail's audio"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GPlayer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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\/*" ] } ] } |