CSS for Evernote

Adds CSS to evernote

当前为 2020-12-31 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name CSS for Evernote
  3. // @namespace https://www.evernote.com/
  4. // @version 3
  5. // @author Blank man
  6. // @description Adds CSS to evernote
  7. // @match https://evernote.com/*
  8. // @match https://evernote.com/
  9. // @match https://evernote.com*
  10. // @match https://evernote.com
  11. // @match https://www.evernote.com/*
  12. // @match https://www.evernote.com/
  13. // @match https://www.evernote.com*
  14. // @match https://www.evernote.com
  15. // ==/UserScript==
  16. function addJS(jsCode) {
  17. var s = document.createElement('style');
  18. s.type = 'text/css';
  19. s.innerText = jsCode;
  20. document.getElementsByTagName('head')[0].appendChild(s);
  21. }
  22. var txt = 'body, en-note {background:rgb(255,0,0)!important';
  23. addJS( txt );