Greasy Fork

Bilibili 搜索:默认图片左对齐

搜索执行后默认使用图片靠左的详细列表样式

// ==UserScript==
// @name         Bilibili 搜索:默认图片左对齐
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  搜索执行后默认使用图片靠左的详细列表样式
// @author       LTHarry
// @match        https://search.bilibili.com/*
// @icon         https://www.bilibili.com/favicon.ico
// @grant        none
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    console.log("默认使用详细列表");

    window.onload = function() {
        $(".imgleft.type").click(); //通过事件监听器,捕捉到网页元素点击关联的事件,直接引用
    }

})();