Media Grabber

Get the media URL of a page's most recently played audio/video (and then do something with it).

Что такое Media Grabber?

Media Grabber - это расширение Chrome, разработанное camerongu3, и его основная функция - "Get the media URL of a page's most recently played audio/video (and then do something with it).".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Media Grabber

Скачайте файлы расширений Media Grabber в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Chrome extension to show the media URL of a page's most recently played audio/video as an easy alternative to looking at the network tab in dev tools

*Instructions:*
https://github.com/camreon/media-grabber/blob/master/README.md                    

Основная информация о расширении

Название Media Grabber Media Grabber
ID ompogmmmcfgapifeghieaklpblkkoloo
Официальный URL https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo
Описание Get the media URL of a page's most recently played audio/video (and then do something with it).
Размер файла 45.6 KB
Количество установок 6,486
Текущая Версия 1.2
Последнее Обновление 2021-02-09
Дата публикации 2016-06-05
Рейтинг 2.80/5 Всего 20 оценок
Разработчик camerongu3
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/camreon/media-grabber/blob/master/README.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Media Grabber",
    "version": "1.2",
    "description": "Get the media URL of a page's most recently played audio\/video (and then do something with it).",
    "icons": {
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icon\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "webRequest",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "bookmarks"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/code.jquery.com; object-src 'self'"
}