fsm 首页推荐隐藏

非私人场合还是不太方便的, 避免错误打开, 默认隐藏, 添加了按钮控制

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         fsm 首页推荐隐藏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  非私人场合还是不太方便的, 避免错误打开, 默认隐藏, 添加了按钮控制
// @author       IITII
// @require      https://code.jquery.com/jquery-3.6.0.min.js
// @match        https://fsm.name
// @match        https://fsm.name/
// @match        https://fsm.name/Index
// @icon         https://avatars.githubusercontent.com/u/33705067?v=4
// @grant        none
// ==/UserScript==


(async function () {
    'use strict';
    let show = false, button, flow = jQuery('.panel-body .container-fluid')
    function hide_show() {
        console.log(`show -> ${show}`);
        if (show) {
            flow.show()
        } else {
            flow.hide()
        }
    }
    button = $('<button>显示猜你喜欢</button>').addClass("btn btn-outline-info btn-sm")
        .css({ 'margin-right': '5px' })
    button.on("click", function () {
        show = !show
        hide_show()
    });

    $("#clipboardBtn").before(button)

    hide_show()
    
})();