您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This is your new file, start writing code
当前为
- // ==UserScript==
- // @name Moco
- // @description This is your new file, start writing code
- // @match *://*.mocoapp.com/*
- // @grant GM_addStyle
- // @version 1.0.2
- // @namespace https://greasyfork.org/users/1402164
- // ==/UserScript==
- (function(){
- var style = document.createElement('style');
- style.type = 'text/css';
- style.innerHTML = `body {
- padding-bottom: 100px;
- }
- .master-navigation .row .col-xs-8 {
- width: auto;
- }
- .container__app-header {
- background:transparent;
- margin:0;
- }
- .header-options {
- width: auto;
- position: absolute;
- right: 0;
- }
- .app-header {
- background:transparent;
- }
- .app-header > .row > .col-xs-4:first-child {
- display: none;
- }
- .app-header > .row > .col-xs-8 {
- position: fixed;
- bottom: 0;
- background-color: #fff7;
- backdrop-filter: blur(5px);
- width: 100%;
- left: 0;
- padding: 10px;
- z-index: 200;
- }
- #intercom-frame,
- .intercom-lightweight-app {
- display: none !important;
- }
- .container {
- width: 100% !important;
- padding: 0 15px;
- }
- @media (max-width:600px) {
- .container--application .grid {
- display:block;
- }
- .sidebar {
- margin-top: -46px;
- padding-top: 0;
- }
- .sidebar .nav-list {
- margin: 0;
- }
- .grid .col-span-13 > div > div .section {
- margin: 0 -15px;
- }
- .grid .col-span-13 > div > div .section > .section-content{
- padding: 30px 10px !important;
- }
- .master-navigation .row .col-xs-8 > .flex {
- flex-wrap: wrap;
- gap: 0 1rem;
- font-size: 0.7rem;
- }
- }
- `;
- document.getElementsByTagName('head')[0].appendChild(style);
- })();