您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Getting raw link from videos from VidLii
// ==UserScript== // @name VidLii Video Downloader // @version 0.2 // @description Getting raw link from videos from VidLii // @author TotoDude21902 // @include http://*.vidlii.com/* // @include https://*.vidlii.com/* // @include http://vidlii.com/* // @include https://vidlii.com/* // @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js // @grant GM_registerMenuCommand // @namespace https://greasyfork.org/users/199852 // ==/UserScript== (function() { 'use strict'; var get = function () { if (typeof vlp !== undefined) { try { window.prompt("Successfully got video raw link", vlp.videoObj.attributes["src"].nodeValue); } catch(e) { alert("Couldn't get the video, Try playing the video"); } } else { alert("Video not found"); } } GM_registerMenuCommand("Get Video", get); })();