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\/*"
            ]
        }
    ]
}