Greasy Fork 支持简体中文。

hypothesis 2

Inject hypoth.is on all sites

  1. // ==UserScript==
  2. // @name hypothesis 2
  3. // @version 1
  4. // @author blankmann
  5. // @description Inject hypoth.is on all sites
  6. // @namespace https://greasyfork.org/users/542418
  7. // @grant none
  8. // @noframes
  9. // @license Apache License V2
  10. // @match *://*/*
  11. // ==/UserScript==
  12. /**
  13. * Repo: https://github.com/tim-hub/Hypothesis-Assistant
  14. */
  15. (
  16. function(){
  17. window.hypothesisConfig=function(){
  18. return{showHighlights:true,appType:'bookmarklet'};
  19. };
  20. var d=document;
  21. var s=d.createElement('script');
  22. s.setAttribute('src','https://hypothes.is/embed.js');
  23. d.body.appendChild(s);
  24. }
  25. )();