Advertisement
muge

[Tampermonkey] Dynasty Reader left/right edit

Apr 13th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Dynasty Reader left/right edit
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  .left is previous, .right is next, current values make the "hitbox" for next take up 3/4 of the page rather than 1/2.
  6. // @author       You
  7. // @match        http*://dynasty-scans.com/chapters/*
  8. // @grant        GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.     GM_addStyle (`
  14. .left {
  15. right: 75% !important;
  16. }
  17.  
  18. .right {
  19. left: 25% !important
  20. }
  21. ` );
  22. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement