Skip to content

Instantly share code, notes, and snippets.

@ssig33
Created April 25, 2017 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssig33/df90b7410808d9a8c0d78b49ef3b42bd to your computer and use it in GitHub Desktop.
Save ssig33/df90b7410808d9a8c0d78b49ef3b42bd to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Auto uncensor Images
// @namespace http://ssig33.com/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://pawoo.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const f = ()=>{
setTimeout(()=>{
document.querySelectorAll('.media-spoiler').forEach((e)=> e.click());
f();
}, 200);
};
f();
// Your code here...
})();
@ssig33
Copy link
Author

ssig33 commented Apr 25, 2017

Google Chrome で https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=ja をインストールした上で、右上にある Raw というボタンをクリックして表示される「インストール」というボタンをクリックしてください。

それから pawoo を開くと、以後エロ画像が自動展開されます。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment