Greasemonkey Script: LJ ToS-Boss
Apr. 7th, 2017 12:04 am![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Does two things:
1) Removes the ToS modal overlay.
2) Unfolds all Inbox messages.
Enjoy...
1) Removes the ToS modal overlay.
2) Unfolds all Inbox messages.
Enjoy...
// ==UserScript== // @name Codeswitcher's LJ ToS-Boss // @namespace http://livejournal.com // @description FU SUP // @include http://*.livejournal.com/* // @include http://*.livejournal.com // @version 2 // @grant none // ==/UserScript== window.onload = function () { document.body.setAttribute("class","s-horizon logged-in"); var hackthisStylesheet = document.styleSheets[document.styleSheets.length - 1 ]; hackthisStylesheet.insertRule(".InboxItem_Content { display: block !important; }", 0); }