Media Grabber

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

Qu'est-ce que Media Grabber ?

Media Grabber est une extension Chrome développée par camerongu3, et sa fonction principale est "Get the media URL of a page's most recently played audio/video (and then do something with it).".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Media Grabber

Téléchargez les fichiers d'extension Media Grabber au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Media Grabber Media Grabber
ID ompogmmmcfgapifeghieaklpblkkoloo
URL Officiel https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo
Description Get the media URL of a page's most recently played audio/video (and then do something with it).
Taille du Fichier 45.6 KB
Nombre d'Installations 6,486
Version Actuelle 1.2
Dernière Mise à Jour 2021-02-09
Date de Publication 2016-06-05
Évaluation 2.80/5 Total 20 Évaluations
Développeur camerongu3
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/camreon/media-grabber/blob/master/README.md
Langues Prises en Charge 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'"
}