Skip to content

Instantly share code, notes, and snippets.

@no1xsyzy
Last active March 16, 2018 11:29
Show Gist options
  • Save no1xsyzy/e75b9866a4db04e9135ed46eeba89974 to your computer and use it in GitHub Desktop.
Save no1xsyzy/e75b9866a4db04e9135ed46eeba89974 to your computer and use it in GitHub Desktop.
Bangumi to OPED list
all_highlight = document.querySelectorAll("div.table-right.data-list li.data-highlight div.title>span");
outputstring="";
for(i of all_highlight){
outputstring+="[ ] OP\t" + i.innerText+"\n";
outputstring+="[ ] ED\t" + i.innerText+"\n";
}
console.log(outputstring);

Transform your liked bangumi in https://bgmlist.com/ into OPED list in console log.

The output format is used in Zim Wiki.

Cannot detect bangumi that only has OP.


番组放送转化为OPED列表,在控制台输出。

格式用于Zim Wiki

不能自动区分短时长只有OP的番剧。

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