Bilibili Watchlater Redirect

Bilibili watchlater page redirect to normal single video page

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Bilibili Watchlater Redirect
// @namespace    https://greasyfork.org/en/scripts/398925-bilibili-watchlater-redirect
// @version      1.0
// @description  Bilibili watchlater page redirect to normal single video page
// @description  B站 稍后再看 页面跳转至普通视频页面
// @icon         https://www.bilibili.com/favicon.ico
// @encoding     utf-8
// @date         03/29/2020
// @modified     03/29/2020
// @author       Franklin Chen
// @supportURL   http://msftbot.com/
// @copyright	 2020, Franklin Chen
// @include      https://www.bilibili.com/watchlater/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function redirect(){
        var url = window.location.href;
        if (url != "https://www.bilibili.com/watchlater/#/list") {
            url = url.replace(/watchlater\/#\//,"");

            var regExp = /\/p(\d*)/;
            var matchArr = regExp.exec(url);
            if(matchArr){
                var pNo= matchArr[1];
                switch(pNo) {
                    case "1":
                        url = url.replace(/\/p\d*/,"");
                        break;
                    default:
                        url = url.replace(/\/p\d*/,"?p="+pNo);
                }
            }
        }

        window.location.href = url;
    }

    function render() {
        var reBtn = $('<img src="https://www.bilibili.com/favicon.ico" alt="Redirect to normal page" title="Redirect to normal page" style="position:fixed;right:10px;bottom: 10px;height:24px;cursor: pointer;z-index:999">');
        reBtn.click(redirect);
        reBtn.appendTo($('body'))
    }

    render();

})();