Media Source Extractor

Copy media source from embedded players and download links to the clipboard.

Was ist Media Source Extractor?

Media Source Extractor ist eine Chrome-Erweiterung, die von rinseandrepeat entwickelt wurde, und ihr Hauptmerkmal ist "Copy media source from embedded players and download links to the clipboard.".

Erweiterungsscreenshots

screenshot

Media Source Extractor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Media Source Extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Copy media source from embedded players and download links to the clipboard for pasting into your favourite stand alone video player etc. Light weight and configurable with domain whitelist and file types.

NOTES: Works on the request level so you have to initiate the request for it to be copied e.g. pressing play on a video / clicking on a download link. Does not work on youtube!                    

Grundlegende Informationen zur Erweiterung

Name Media Source Extractor Media Source Extractor
ID oopeljipllddhgmnkpngbelnjebjailm
Offizielle URL https://chrome.google.com/webstore/detail/media-source-extractor/oopeljipllddhgmnkpngbelnjebjailm
Beschreibung Copy media source from embedded players and download links to the clipboard.
Dateigröße 13.34 KB
Installationsanzahl 91
Aktuelle Version 1.0.0
Letztes Update 2021-01-15
Veröffentlichungsdatum 2021-01-15
Entwickler rinseandrepeat
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/isometimesgit/media-source-extractor
Hilfeseite URL https://github.com/isometimesgit/media-source-extractor
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Media Source Extractor",
    "description": "Copy media source from embedded players and download links to the clipboard.",
    "version": "1.0.0",
    "icons": {
        "128": "\/assets\/icon-128.png"
    },
    "background": {
        "scripts": [
            "\/js\/settings.js",
            "\/js\/util.js",
            "\/js\/main.js"
        ]
    },
    "browser_action": {
        "browser_style": true,
        "default_popup": "\/html\/options.html",
        "default_icon": {
            "128": "\/assets\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "\/html\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "",
        "clipboardWrite",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "storage"
    ]
}