Skip to content

Instantly share code, notes, and snippets.

@bemitc
Last active September 11, 2024 13:17
Show Gist options
  • Save bemitc/edce0f1cd879fbf9df4b44d8b4b7133e to your computer and use it in GitHub Desktop.
Save bemitc/edce0f1cd879fbf9df4b44d8b4b7133e to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name animelon-subtitle-downloader
// @namespace http://tampermonkey.net/
// @version 0.1
// @description download animelon subtitles
// @author mescyn#5794
// @match https://animelon.com/video/*
// @grant unsafeWindow
// @grant GM_registerMenuCommand
// @require https://cdn.jsdelivr.net/npm/[email protected]/dist/FileSaver.min.js
// ==/UserScript==
GM_registerMenuCommand("Download Subtitles", AnimelonSubtitleDownloader);
// downloads all subtitle options (english, hiragana, katakana, japanese romaji)
function AnimelonSubtitleDownloader()
{
var subtitles = angular.element(dialogueHistoryLists).scope().$parent.subtitlesArray;
for (var i = 0; i < subtitles.length; i++)
{
var s = subtitles[i].assString;
var decodedSubtitles = CryptoJS.AES.decrypt(s.substring(8,s.length-5),s.substring(0,8).split("").reverse().join("")).toString(CryptoJS.enc.Utf8).replace(/undefined/g,"");
var blob = new Blob([decodedSubtitles], {type: "text/plain;charset=utf-8"});
var subtitle_name = "animelon_" + document.URL.split('/').reverse()[0] + '_' + subtitles[i].language + '.ass';
saveAs(blob, subtitle_name);
}
}
@bemitc
Copy link
Author

bemitc commented Sep 11, 2024

I did notice the menu disappears after the first time you right click on it which I can look into. However, not working at all seems like it might be related to dev mode not being enabled, based on the 2nd screenshot.

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