Pastebin PRO Accounts WINTER SPECIAL! For a limited time only get 40% discount on a LIFETIME PRO account!
- // ==UserScript==
- // @name Pixiv Ugoira Save
- // @namespace Galinoa
- // @description Save Ugoira animations from Pixiv as either webm or gif
- // @include http://www.pixiv.net/member_illust.php?mode=medium&illust_id=*
- // @version 1
- // @grant none
- // @icon http://www.pixiv.net/favicon.ico
- // ==/UserScript==
- function saveWebm() {
- var a = document.createElement('script');
- a.src = 'http://ohhiru.info/ugoira/ugoira_webm.js';
- document.body.appendChild(a);
- }
- function saveGif() {
- var a = document.createElement('script');
- a.src = 'http://ohhiru.info/ugoira/ugoira_gif.js';
- document.body.appendChild(a);
- }
- if (document.getElementsByTagName('html')[0].innerHTML.indexOf('class="_ugoku') > 0) {
- saveWebm();
- saveGif();
- }
RAW Paste Data

