您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
当前为
- // ==UserScript==
- // @name IMVU Lock List CSS Addon
- // @namespace http://tampermonkey.net/
- // @version 2024-04-05-2137
- // @description try to take over the world!
- // @author Evehne
- // @match https://*.imvu.com/catalog/web_blocked_list.php
- // @icon https://www.google.com/s2/favicons?sz=64&domain=imvu.com
- // @grant none
- // @run-at document-idle
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- var e = document.querySelector('td .blockedlistbox');
- e.innerHTML = e.innerHTML + `
- <style>
- body > table {
- margin-top: 150px;
- margin-bottom: 150px;
- }
- #mininav_body{
- position: fixed;
- width: 100%;
- left: 0px;
- top: 0px;
- z-index: 10000 !important;
- background: white;
- }
- .blockedlistbox {
- display: flex;
- width: 98%;
- flex-direction: row;
- justify-items: center;
- text-align: center;
- background: none;
- }
- .blockedlistbox > tbody > tr:has(.infoBox) {
- display: inline-flex;
- width: 350px;
- margin-bottom: 3px;
- }
- .infoBox table[background^="/catalog"]{
- background: none;
- }
- .infoBox:has(font[color="#bb0000"]) {
- opacity: 0.7;
- background: #e3aeae;
- }
- .infoBox:has(font[color="#00bb00"]) {
- opacity: 1.0;
- background: #cff1b9;
- }
- .blockedlistbox > tbody > tr:has(.infoBoxContentstrans){
- display: block;
- position: fixed;
- width: 100%;
- left: 0px;
- top: 34px;
- z-index: 10100 !important;
- background: #333;
- border: 1px solid #333;
- }
- .blockedlistbox > tbody > tr > td:has(.infoBoxContentstrans){
- display: inline-block;
- width: 100%;
- text-align: center;
- }
- </style>
- `;
- var els = document.querySelectorAll('.blockedlistbox > tbody > tr');
- var count = els.length;
- els[count-1].parentNode.insertBefore(els[count-1], els[0]);
- })();