Whitespaces (only pilcrow for the endline) in Google Docs

Adds whitespaces (only pilcrow for the endline) in Google Docs.

目前為 2017-02-15 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Whitespaces (only pilcrow for the endline) in Google Docs
  3. // @description Adds whitespaces (only pilcrow for the endline) in Google Docs.
  4. // @namespace https://github.io/oshliaer
  5. // @domain docs.google.com
  6. // @include http://docs.google.com/*
  7. // @include https://docs.google.com/*
  8. // @author +AlexanderIvanov
  9. // @developer +AlexanderIvanov
  10. // @version 2017.2.15
  11. // @grant GM_addStyle
  12. // @icon https://gist.github.com/pp/pp/raw/icon.png
  13. // @screenshot https://gist.github.com/pp/pp/raw/screenshot.png
  14. // @license WTFPL; http://www.wtfpl.net/txt/copying
  15. // ==/UserScript==
  16.  
  17. var style = '.goog-inline-block.kix-lineview-text-block:after{content:"¶";}';
  18.  
  19. GM_addStyle(style);