您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Modifies the Waze Map Editor layout to provide a larger viewing area for editing.
当前为
// ==UserScript== // @name WME Maximized (Basic) // @version 0.0.9 (Beta) // @namespace http://greasyforks.org // @description Modifies the Waze Map Editor layout to provide a larger viewing area for editing. // @author SeekingSerenity // @homepage https://greasyforks.org/en/scripts/6238-wme-maximized-basic // @include https://www.waze.com/editor/* // @include https://www.waze.com/*/editor/* // @include https://editor-beta.waze.com/* // @run-at document-start // @grant none // ==/UserScript== function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle('.waze-header { height: 24px !important; }'); addGlobalStyle('.waze-header-logo { background-size: 60px !important; margin: 4px 0px auto auto !important; background-position: top center !important; }'); addGlobalStyle('.waze-header-menu { line-height: 25px !important; font-size: 11px !important; }'); addGlobalStyle('#map-search { line-height: 60px !important; }'); addGlobalStyle('#toolbar.toolbar-button { width: 35px !important; height: 40px !important; }'); addGlobalStyle('.toolbar-sprite, .toolbar-add, .toolbar-delete, .toolbar-layers, .toolbar-redo, .toolbar-save, .toolbar-undo, #toolbar #layer-switcher-menu a span, #edit-buttons .toolbar-button.toolbar-group-drawing:after, #edit-buttons .toolbar-button.WazeControlUndoControl:after, #edit-buttons .toolbar-button.WazeControlRedoControl:after, #edit-buttons .toolbar-button.WazeControlSave:after, #edit-buttons .toolbar-button.WazeControlDeleteFeature:after, #map-lightbox .content .header .toolbar .toolbar-add, #map-lightbox .content .header .toolbar .toolbar-delete, #map-lightbox .content .header .toolbar .toolbar-layers, #map-lightbox .content .header .toolbar .toolbar-redo, #map-lightbox .content .header .toolbar .toolbar-save, #map-lightbox .content .header .toolbar .toolbar-undo { background-size: 25px 150px !important; }'); addGlobalStyle('#map-search, #toolbar { height: 40px !important; line-height: 40px !important; }'); addGlobalStyle('#map-search { max-width: 280px !important; }'); addGlobalStyle('#map-search .input-wrapper .input-addon-left { margin-top: 8px !important; }'); addGlobalStyle('#edit-buttons .toolbar-button:after { width: 25px !important; height: 25px !important; }'); addGlobalStyle('#edit-buttons .toolbar-button.WazeControlDeleteFeature:after { background-position: 0px -25px !important; }'); addGlobalStyle('#edit-buttons .toolbar-button.WazeControlRedoControl:after { background-position: 0px -75px !important; }'); addGlobalStyle('#edit-buttons .toolbar-button.WazeControlUndoControl:after { background-position: 0px -126px !important; }'); addGlobalStyle('#edit-buttons .toolbar-button.WazeControlSave:after { background-position: 0px -100px !important; }'); addGlobalStyle('#toolbar #layer-switcher-menu a span { width: 25px !important; height: 25px !important; background-position: 0px -49px !important; }'); addGlobalStyle('#toolbar .toolbar-button, #layer-switcher, #layer-switcher .dropdown a { width: 42px !important; height: 40px !important; }'); addGlobalStyle('#layer-switcher .dropdown-menu { top: 39px !important; line-height: 18px !important; }'); addGlobalStyle('#toolbar .toolbar-separator { height: 40px !important; }'); addGlobalStyle('#sidebar { max-width: 260px !important; }'); addGlobalStyle('.show-sidebar .row-fluid .fluid-fixed { margin-left:260px !important; }'); addGlobalStyle('#user-info h2 { display:none !important; }'); addGlobalStyle('#sidebar .message { font-size: 12px !important; line-height: 14px !important; margin: 5px !important; }'); addGlobalStyle('#sidebar .tab-content { padding: 3px 15px 10px 9px !important; }'); addGlobalStyle('#sidebar #links { width: 320px !important; font-size: 10px !important; background-color: #e9e9e9 !important; border-right: #dfdfdf thin solid !important; }'); addGlobalStyle('.c1249150123 { width: 180px !important; }'); /* addGlobalStyle('.room-name.single-room-label {font-size: 11px !important; padding-left: 8px !important; }'); addGlobalStyle('.dropdown .dropdown-toggle { padding-left: 5px !important; padding-right: 0px !important; }'); addGlobalStyle('.status { font-size: 11px !important; }'); addGlobalStyle('#ChatJumper-JUMP.ChatJumper, #ChatJumper-JUMP-clear { font-size: 11px !important; padding-left: 1px !important; padding-right: 1px !important; }'); */ addGlobalStyle('.olControlAttribution { margin-left: 45px !important; }'); addGlobalStyle('#WMETB_NavBar.ui-draggable { height: 37px !important; line-height: 22px !important; color: #000 !important; background-color: #dfdfdf !important; border: #59899E 2px solid !important; }');