Video Source Link Copy

Get video src url and copy it into your clipboard

Was ist Video Source Link Copy?

Video Source Link Copy ist eine Chrome-Erweiterung, die von CokeJoke (Justin Mankowski) entwickelt wurde, und ihr Hauptmerkmal ist "Get video src url and copy it into your clipboard".

Erweiterungsscreenshots

screenshot
screenshot

Video Source Link Copy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Video Source Link Copy-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

                        It basically grabs the url from the defined querySelector path and defined website url and grabs the source src link and you should install it cause it's the fastes way of getting the url. I'm using it for syncplay because vlc needs the source link and know I don't need to get it by my self and just use the extensions copy button or turn auto copy on.                    

Grundlegende Informationen zur Erweiterung

Name Video Source Link Copy Video Source Link Copy
ID lbgcheaghokbiabnjkcfhijpjbhflhkp
Offizielle URL https://chrome.google.com/webstore/detail/video-source-link-copy/lbgcheaghokbiabnjkcfhijpjbhflhkp
Beschreibung Get video src url and copy it into your clipboard
Dateigröße 18.2 KB
Installationsanzahl 478
Aktuelle Version 1.0
Letztes Update 2020-11-04
Veröffentlichungsdatum 2020-11-04
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler CokeJoke (Justin Mankowski)
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Source Link Copy",
    "version": "1.0",
    "description": "Get video src url and copy it into your clipboard",
    "author": "CokeJoke (Justin Mankowski)",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "options_page": "options\/options.html",
    "permissions": [
        "tabs",
        "storage",
        "clipboardWrite",
        "*:\/\/*\/*"
    ],
    "manifest_version": 2
}