您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a tab for the previously played videos
当前为
// ==UserScript== // @name InstaSynchP History // @namespace InstaSynchP // @description Adds a tab for the previously played videos // @version 1 // @author Zod- // @source https://github.com/Zod-/InstaSynchP-History // @license MIT // @include *://instasync.com/r/* // @include *://*.instasync.com/r/* // @grant none // @run-at document-start // @require https://greasyfork.org/scripts/5647-instasynchp-library/code/InstaSynchP%20Library.js?version=41059 // ==/UserScript== function History(version) { "use strict"; this.version = version; this.name = 'InstaSynchP History'; } History.prototype.executeOnce = function () { "use strict"; var th = this; cssLoader.add({ 'name': 'playlist_history_css', 'url': 'https://cdn.rawgit.com/Zod-/InstaSynchP-History/master/history.css', 'autoload': true }); createNavTab({ tooltip: 'History', tab: '#tabs_playlist_history', class: 'fa fa-clock-o' }).insertAfter('.video-controls > .nav-tabs > li:first-child'); $('<div>',{ class: 'tab-pane', id:'tabs_playlist_history' }).append( $('<ol>',{ class: 'playlist', id: 'playlist_history' }) ).appendTo('.video-controls > .tab-content'); events.on(th, 'PlayVideo', function(){ var clone = $('#playlist > li.active').clone().toggleClass('active'); $('.buttons > .remove-video', clone).remove(); $('#playlist_history').prepend(clone); }); }; window.plugins = window.plugins || {}; window.plugins.history = new History('1');