GPlayer
Listen to Gmail's audio
Vad är GPlayer?
GPlayer är en Chrome-tillägg utvecklad av Dinesh, och dess huvudfunktion är "Listen to Gmail's audio".
Tilläggsskärmbilder
Ladda ner GPlayer-förlängningens CRX-fil
Ladda ner GPlayer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | obdmmgdlafadeehmbmcmoggnaokehnaj |
| Officiell webbadress | https://chromewebstore.google.com/detail/gplayer/obdmmgdlafadeehmbmcmoggnaokehnaj |
| Beskrivning | Listen to Gmail's audio |
| Filstorlek | 77.33 KB |
| Antal Installationer | 4,000 |
| Aktuell Version | 2.60 |
| Senast Uppdaterad | 2021-06-18 |
| Publiceringsdatum | 2021-06-08 |
| Betyg | 3.56/5 Totalt 18 Betyg |
| Utvecklare | Dinesh |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://www.dfa.fyi/ |
| Hjälpsida URL | https://www.dfa.fyi/ |
| Stödda Språk | 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\/*"
]
}
]
} | |