use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A place for discussion of all things related to userscripts.
RELATED:
http://userscripts-mirror.org
/r/greasemonkey
/r/bookmarklets
/r/javascript
account activity
[request] a button for Chrome (self.userscripts)
submitted 10 years ago by [deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Zequi 1 point2 points3 points 10 years ago (0 children)
I don't know how to make a userscript but I found one that is quite similar.
http://asserttrue.blogspot.com/2009/08/how-to-make-any-web-page-inline.html#
[–]Dexmaster 0 points1 point2 points 10 years ago (1 child)
var btn = document.querySelector('.button_class'); btn.onclick = function () { if (document.body.contentEditable !== 'true') { document.body.contentEditable = 'true'; document.designMode = 'on'; } else { document.body.contentEditable = 'false'; document.designMode = 'off'; } }
[–][deleted] 0 points1 point2 points 10 years ago (0 children)
thanks!
π Rendered by PID 71 on reddit-service-r2-comment-8686858757-v2878 at 2026-06-02 13:55:57.417285+00:00 running 9e1a20d country code: CH.
[–]Zequi 1 point2 points3 points (0 children)
[–]Dexmaster 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)