/download-animated-line-stickers

A simple JS script to save/download animated stickers from Line messenger's store from your browser.

Primary LanguageJavaScript

download-animated-line-stickers

A simple Javascript script to download animated stickers from Line messenger's web store. This is useful for designers who want to recreate animations from existing stickers.

Line's web store disables right clicking to save animated stickers. This script allows you to load the URL of the animated sticker when you click it in the Line web store.

Example

Usage

  1. Navigate to the webpage for the stickers you want to download. Example

  2. Copy and paste the code below into the address bar. This can be bookmarked if you will be using it often.

NOTE: If using Chrome, make sure that the script pastes with "javascript:" at the start. I've noticed that sometimes Chrome omits that part. If it happens to you, just enter "javascript:" before pasting the script.

javascript:$(".mdCMN09Image").click(function(event) { urx = "https://" + event.target.outerHTML.split("https://")[1].split(".png")[0] + "_animation@2x.png"; window.open(urx); console.log(urx); });
  1. Click on any animated sticker to open the animated sticker URL in a new tab!

If you want to download all of the stickers at once, follow step 2 but with the script below. It will download a zip archive of all the stickers.

javascript:window.open("http://dl.stickershop.line.naver.jp/products/0/0/1/" + window.location.pathname.split("product/")[1].split('/')[0] + "/iphone/stickerpack@2x.zip")