// ==UserScript== // @name 115 Online Player // @version 1.0.1 // @description Play videos from 115 online // @match http://*.115.com/* // @match http://*.115.com/* // @author 8qwe24657913 | 864907600cc // @run-at document-end // @grant none // @namespace http://ext.ccloli.com // @downloadURL none // ==/UserScript== // 播放的视频系未转码的原始视频,播放视频需浏览器支持该格式,当浏览器无法播放此视频时会弹出视频下载地址,您可以将地址贴入本地播放器来在线观看,或贴入下载地址下载播放 var requests = [], CloudVideo = window.CloudVideo = { showPanel: function (code, height) { var dialog_frame = $('
Loading......
'); new Core.DialogBase({ title: "视频播放", content: dialog_frame, width: 640 }).Open(); this.getFileUrl(code, function (url) { $('').attr('src', url).appendTo(dialog_frame.html('')).on('error',function(){prompt('播放失败!可能是不支持的格式或下载断流!\n请尝试复制下载地址并调用本地播放器播放', this.src)}); }); }, getFileUrl: function (pickcode, callback) { requests.push([pickcode, callback]) } }; $('