您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
better style for redmine
当前为
// ==UserScript== // @name redmine_tweaks // @namespace *tiss.tuwien.ac.at/redmine* // @include *tiss.tuwien.ac.at/redmine* // @version 0.2 // @description better style for redmine // @author lual // @grant GM_addStyle // @grant GM_getResourceURL // ==/UserScript== // changes: 2011-03-17 initial // 2017-11-01 publish on greasyfork ///////////////////////////////////////////////////////////////////////////////////////////////////////// //schoen farbig wird der code mit <pre><code class="ruby">der code</code></pre> // aber die zeilennummer sind stoerend.... GM_addStyle(".syntaxhl .line-numbers {visibility: hidden;}"); //private tasks in der uebersicht als solche markieren... GM_addStyle(".private>td.subject>a:before {content: 'PRIVAT'; background-clip: border-box; background-color: #DD2222; background-image: none; background-origin: padding-box; background-position: 0 0; background-repeat: repeat; background-size: auto auto; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; bottom: 2px; color: #FFFFFF; font-size: 60%; font-weight: bold; margin-right: 2px; padding-bottom: 0; padding-left: 2px; padding-right: 2px; padding-top: 0; position: relative; text-transform: uppercase;}");