Bilibili Old

Use old Bilibili home page and video page

目前為 2023-04-22 提交的版本,檢視 最新版本

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name              Bilibili Old
// @name:zh-CN        旧版 Bilibili
// @version           0.5
// @description       Use old Bilibili home page and video page
// @description:zh-CN 使用旧版 Bilibili 主页和播放页
// @author            GForkMe.L
// @run-at            document-start
// @match             *://www.bilibili.com/*
// @match             *://search.bilibili.com/*
// @grant             GM_registerMenuCommand
// @namespace         https://greasyfork.org/users/12904
// @license           GPL v3
// ==/UserScript==

(function () {
  "use strict";

  const MAX_AGE = 60 * 60 * 24 * 365;
  const PLAYER_CONF = "bpx_player_profile";
  const SCRIPT_STAT = "bili_old_video";

  class BiliOld {
    constructor() {
      // Use no feed bilibili homepage, old video page and stop autoplay.
      if (!document.cookie.includes("SESSDATA")) {
        if (!localStorage.getItem(SCRIPT_STAT) && !document.cookie.includes("go_old_video=1")) {
          this.toggleNoFeeds();
          this.noVideoAutoplay();
          this.noRcmAutoplay();
          this.toggleOldVideo();
        }
      }

      const menuItems = [
        [
          "No Video and Recommend Autoplay",
          () => {
            this.noVideoAutoplay();
            this.noRcmAutoplay();
          },
        ],
        ["No Video Autoplay", () => this.noVideoAutoplay()],
        ["No Recommend Autoplay", () => this.noRcmAutoplay()],
        ["Toggle Feeds", () => this.toggleNoFeeds()],
        ["Toggle Old Homepage", () => this.toggleOldHome()],
        ["Toggle Old Searchpage", () => this.toggleOldSearch()],
        ["Toggle Old Videopage", () => this.toggleOldVideo()],
      ];

      this.mid = [];
      for (let i = 0; i < menuItems.length; i++) {
        this.mid.push(GM_registerMenuCommand(menuItems[i][0], menuItems[i][1]));
      }
    }

    updateStat(arg) {
      const STAT = { no_v_autoplay: 0, no_rcmv_autoplay: 0, no_feeds: 0, old_home: 0, old_video: 0, old_search: 0 };

      Object.assign(STAT, JSON.parse(localStorage.getItem(SCRIPT_STAT)) ?? STAT);
      for (let key in STAT) {
        STAT[key] += arg[key] ? 1 : 0;
      }

      localStorage.setItem(SCRIPT_STAT, JSON.stringify(STAT));
    }

    noVideoAutoplay() {
      const CONF = JSON.parse(localStorage.getItem(PLAYER_CONF)) ?? { media: { autoplay: false } };
      if (!CONF.media.autoplay) {
        CONF.media.autoplay = false;
        localStorage.setItem(PLAYER_CONF, JSON.stringify(CONF));
      }
      this.updateStat({ no_v_autoplay: true });
    }

    noRcmAutoplay() {
      const CONF = JSON.parse(localStorage.getItem(PLAYER_CONF)) ?? { media: { handoff: 2 } };
      if (CONF.media.handoff != 2) {
        CONF.media.handoff = 2;
        localStorage.setItem(PLAYER_CONF, JSON.stringify(CONF));
      }
      if (localStorage.getItem("recommend_auto_play") !== "close") {
        localStorage.setItem("recommend_auto_play", "close");
      }
      this.updateStat({ no_rcmv_autoplay: true });
    }

    toggleNoFeeds() {
      this.updateStat({ no_feeds: this.#toggleCookie("i-wanna-go-feeds", "-1") });
    }

    toggleOldHome() {
      this.updateStat({ old_home: this.#toggleCookie("i-wanna-go-back", "2") });
    }

    toggleOldSearch() {
      this.updateStat({ old_search: this.#toggleCookie("nostalgia_conf", "2") });
    }

    toggleOldVideo() {
      this.updateStat({ old_video: this.#toggleCookie("go_old_video", "1") });
    }

    #toggleCookie(key, val) {
      let cookie = `${key}=${val}`;
      let attrib = "domain=bilibili.com; path=/; max-age=" + MAX_AGE;
      if (document.cookie.includes(cookie)) {
        document.cookie = `${key}=${-val}; ${attrib}`;
        return false;
      } else {
        document.cookie = `${cookie}; ${attrib}`;
        return true;
      }
    }
  }

  const goOld = new BiliOld();
})();