// ==UserScript== // @name LINE Sticker Downloader // @version 1.0 // @author XFox Prower // @namespace http://www.TailsArchive.net // @description Creates a button to download stickers from the LINE Store // @include https://store.line.me/stickershop/product/* // @downloadURL none // ==/UserScript== 'use strict'; var D=document, Cont=D.getElementsByClassName('mdCMN08Ul').item(0), li, Btn; if(Cont) { li=D.createElement('li'); li.className='mdCMN08Li'; Btn=D.createElement('input'); Btn.type='button'; Btn.value='Download'; Btn.style.cssText='display:table-cell;min-width:170px;vertical-align:middle;height:44px;background-color:#00ace0;color:#fff'; Btn.onclick=function() { var Col=D.getElementsByClassName('FnSticker_animation_list_img').item(0).getElementsByTagName('span'), Len=Col.length, i, bg, str=''+D.title.replace(' - Creators\' Stickers','')+'
'; for(i=0;i '; } str+='
'; open('data:text/html,'+encodeURI(str)); }; li.appendChild(Btn); Cont.insertBefore(li,Cont.getElementsByClassName('mdCMN08Li').item(2)); }