您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This userscript is simple and designed to increase visibility of Zendesk. All use liability is on the end user.
// ==UserScript== // @name Zendesk UI Tweaks // @namespace plugable.com // @version 0.2 // @description This userscript is simple and designed to increase visibility of Zendesk. All use liability is on the end user. // @author Derek Nuzum // @match https://*.zendesk.com/* // @grant none // @license MIT - https://opensource.org/licenses/MIT // @copyright Copyright (C) 2017, by Derek Nuzum <[email protected]> // ==/UserScript== //DO NOT TOUCH THIS AREA 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); } //END DO NOT TOUCH AREA //CUSTOMIZATION BEGINS HERE //Change Styling Here //Internal Note Text Box Color addGlobalStyle('.rich_text .comment_input:not(.is-public) div[contenteditable] {background: #eef955 !important;}'); //Previous Internal Notes Text Box Color addGlobalStyle('.event:not(.is-public) .comment{background: #eef955 !important;}');