Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* global $, jQuery */
- // ==UserScript==
- // @name pixiv Strip
- // @author Alice
- // @description Strips pixiv stuff
- // @include *pixiv.net*
- // @require http://code.jquery.com/jquery-3.3.1.min.js
- // @version 1.1
- // ==/UserScript==
- //-----------------------------------------------------------
- this.$ = this.jQuery = jQuery.noConflict(true); // Avoid duplicate jQuery conflict
- $(function() {
- //-----------------------------------------------------------
- $("<style type='text/css'>div.lmABtt { display: none; }</style>").appendTo("head"); // Recommended
- $("<style type='text/css'>div._2Fwd5oy { display: none; }</style>").appendTo("head"); // Recommended
- $("<style type='text/css'>section.dXLmdt { display: none; }</style>").appendTo("head"); // Comments
- $("<style type='text/css'>section.glggnQ { display: none; }</style>").appendTo("head"); // Comments
- //$("<style type='text/css'>div.SrVfh { display: none; }</style>").appendTo("head"); // Related Works
- $("<style type='text/css'>aside:nth-child(4) { display: none !important; }</style>").appendTo("head"); // Related Works
- $("<style type='text/css'>div._26Axzt9 { display: none; }</style>").appendTo("head"); // Tag list
- $("<style type='text/css'>footer.iCdqZP { display: none; }</style>").appendTo("head"); // Tag list
- // Jacqli document.querySelector('body > div:nth-child(5)').style.display = "none"
- //-----------------------------------------------------------
- });
Add Comment
Please, Sign In to add comment