Inverted Telegram

“Telegram web for night owls”

目前為 2016-04-03 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Inverted Telegram
  3. // @description “Telegram web for night owls”
  4. // @namespace https://tripu.info/
  5. // @version 0.0.1
  6. // @include https://web.telegram.org*
  7. // @license GNU General Public License v3.0 only
  8. // @license https://spdx.org/licenses/GPL-3.0.html
  9. // @supportURL https://tripu.info/
  10. // @author tripu
  11. // ==/UserScript==
  12.  
  13. 'use strict';
  14.  
  15. var style = 'body, div.im_dialogs_col_wrap, div.im_history_col_wrap { background-color: #404040; color: #c0c0c0; }';
  16. document.styleSheets[document.styleSheets.length - 1].insertRule(style, 0);