Halve HN comment's indentation

Halves indentation of HN comments

目前为 2023-02-26 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.cn-greasyfork.org/scripts/460786/1154528/Halve%20HN%20comment%27s%20indentation.js

  1. // ==UserScript==
  2. // @name Halve HN comment's indentation
  3. // @namespace https://github.com/tekinosman/
  4. // @version 1.1
  5. // @license MIT
  6. // @description Halves indentation of HN comments
  7. // @author Osman Tekin
  8. // @match https://news.ycombinator.com/*
  9. // @match http://news.ycombinator.com/*
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=ycombinator.com
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. document.querySelectorAll(".ind img") /* Comments are indented
  15. * with varying-width img elements
  16. */
  17. .forEach(indentation => indentation.width *= 0.5);