知乎浅色床单

try to take over the world!

  1. // ==UserScript==
  2. // @name 知乎浅色床单
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.zhihu.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var style = document.createElement("style");
  14. style.innerHTML = `a {
  15. color: hsl(31, 80%, 84%);
  16. }
  17.  
  18.  
  19. .zu-top {
  20. background: -webkit-linear-gradient(top,hsl(35, 27%, 98%),hsl(31, 26%, 85%));
  21. border-bottom: 1px solid hsl(31, 26%, 73%);
  22. }
  23.  
  24.  
  25. .zu-top-add-question {
  26. background: linear-gradient(to bottom,hsl(32, 23%, 98%),hsl(31, 23%, 89%));
  27. border: 1px solid hsl(31, 27%, 84%);
  28. }
  29.  
  30.  
  31. .zu-top-nav-li.current {
  32. background: linear-gradient(to bottom,hsl(31, 26%, 86%),hsl(31, 24%, 84%));
  33. }
  34.  
  35. .zu-top-search-input {
  36. border: 1px solid hsl(31, 27%, 84%);
  37. }
  38.  
  39.  
  40. .zu-top-search-form .zu-top-search-button {
  41. background: linear-gradient(to bottom,hsl(32, 23%, 98%),hsl(31, 23%, 89%));
  42. border: 1px solid hsl(31, 27%, 84%);
  43. }`;
  44. console.log("run!");
  45. document.getElementsByTagName('head')[0].appendChild(style);
  46. document.getElementById('q').placeholder = '搜索你感兴趣的床单...';
  47. // Your code here...
  48. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址