您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Increase size of folders menu and size of scrollbar under poster
// ==UserScript== // @name Kinopoisk - folders extender // @namespace http://tampermonkey.net/ // @version 1.0.1 // @description Increase size of folders menu and size of scrollbar under poster // @author Blackmeser // @match https://kinopoisk.ru/* // @match https://www.kinopoisk.ru/* // @match https://*kinopoisk.ru/* // @compatible firefox // @compatible chrome // @require http://code.jquery.com/jquery-3.4.1.min.js // @grant GM_addStyle // @run-at document-start // @license MIT // ==/UserScript== GM_addStyle ( ` .styles_root__JykRA { position: relative; display: flex; flex: 1; flex-direction: column; min-height: 1200px !important; } ` ); GM_addStyle ( ` .styles_itemWrapper__gbOgm { display: inline-flex; overflow: auto; overflow-y: auto; flex-direction: column; width: 100%; max-height: 500px !important; scrollbar-width: thin; } ` ); GM_addStyle ( ` .styles_itemWrapper__gbOgm::-webkit-scrollbar { width: 15px !important; height: 12px; } ` ); /*.styles_itemWrapper__gbOgm { display: inline-flex; overflow: auto; overflow-y: auto; flex-direction: column; width: 100%; max-height: 500px !important; scrollbar-width: 20px; }*/ (function() { 'use strict'; // Your code here... })();