New
Jul 30, 2020 7:00 PM
#1
| The Script Generates a list of all of your (or any user's) rewatched/reread animes/mangas. The script works on any list style. Do you want to know which titles you rewatched or reread on MyAnimelist? Not satisfied with the simple counter on your profile page? Then simply use this script to generate your own ReWatched/ReRead list. Or generate the ReWachted/ReRead list OF ANY USER! You don't need to be logged in to use this script! 1 Install the script https://greasyfork.org/en/scripts/407957 2 Click on the 'ReWatched/ReRead' blue text on your profile * HOW TO USE: * Go to a profile page. * Click on the rewatched/reread text under the user stats. * After (about 1 minute for every 300 entries) you will see the generated rewatch/reread list. Add an "alert message" or make the button works only with a double click so that nobody will click on the button by accident. BBCode img by count separated BBCode list+img by count separated BBCode list by count (Show the rewatched/reread value in front of the anime/manga title) BBCode lists with the mal link (Click on the title to open the MAL entry link) The Following Feature "Already Exists" BBCode list by count separated Just copy the generated text content and then use the website http://any2bb.com/ Bugs? The script didn't work? Reload the page and try again! Try using the script after you closed any opened games, video players, unnecessary browser tabs, etc. Free up your computer resources! Try disabling all of your browser extensions. Try using another browser. This is a different scrapping method. I didn't add them to the tampermonkey script, so you need to run them on the browser dev console by yourself. Pros of this method; You can easily edit your rewatched/reread animes/mangas. You can know exactly in what position they are in your completed list. Cons of this method; Takes the double amount of time to show the results. (if the normal method takes 1 min, on a list with +/- 300 entries, this method would take like 2 mins. in the same list) You can't download your rewatched/reread anime/manga list. //Run this only on modern anime lists
var totalnum = $("td.data.number").length //Count total completed entries number
// The 6 lines Below Will Click all links labeled 'More' to get the rewatch counts later on the page
var moreLinks = document.querySelectorAll('a');
for (var i = moreLinks.length; i--;) {
if (moreLinks[i].innerHTML == 'More') {
moreLinks[i].click();
}
}
var interval = setInterval(loopscrape, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape(){ //Remove all entries that were not rewatched
if (totalnum === document.querySelectorAll('tbody.list-item tr.more-info strong').length) //Check If The total completed entries number is equal to the total number of more links opened, And If Yes These Codes Will Run
{
clearInterval(interval); //Stop running the interval
var moreLinks2 = document.querySelectorAll('tbody.list-item tr.more-info strong');
for (var i = moreLinks2.length; i--;) {
if (moreLinks2[i].innerText === '0') {
$('tbody.list-item')[i].remove();
} //Remove the entry from the list
} //Finish the for condition
} //Finish the if condition
} //Finish the loopscrape function
//Then run this, it's not really necessary to run this, this will only make it easier to know how many times you've rewatched the animes
for (var i = document.querySelectorAll("td.td1.borderRBL").length; i--;) {
document.querySelectorAll("td.td1.borderRBL")[i].outerHTML = "This series has been re-watched <strong>" + document.querySelectorAll('tbody.list-item tr.more-info strong')[i].textContent.replace(/[^0-9]+/g, "") + "</strong> times" //Remove needless text and leave only "This series has been re-watched NUM times"
} //Finishes the for condition
//Then run this, it's not really necessary to run this, this will only make it easier to know how many times you've rewatched the animes
var i;
for (i = 0; i < document.querySelectorAll('tbody.list-item tr.more-info strong').length; i++) { //Get all the reread values
document.querySelectorAll('tbody.list-item tr.more-info strong')[i].setAttribute("style", "font-size: 16px;background-color: yellow;"); //Make their background yellow
}//Run this only on modern manga lists
var totalnum = $("td.data.number").length //Count total completed entries number.It's save to run this command line after 15 secs
// The 6 lines Below Will Click all links labeled 'More' to get the rewatch counts later on the page
var moreLinks = document.querySelectorAll('a');
for (var i = moreLinks.length; i--;) {
if (moreLinks[i].innerHTML == 'More') {
moreLinks[i].click();
}
}
var interval2 = setInterval(loopscrape2, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape2() {
if (totalnum === document.querySelectorAll("td.td1.borderRBL").length) //Check If The total completed entries number is equal to the total number of more links opened,And If Yes These Codes Will Run
{
clearInterval(interval2); //Stop running the interval
for (var i = document.querySelectorAll("td.td1.borderRBL").length; i--;) {
document.querySelectorAll("td.td1.borderRBL")[i].outerHTML = "Times Read:" + "<strong>" + document.querySelectorAll("td.td1.borderRBL")[i].firstElementChild.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.textContent.replace(/[^0-9]+/g, ""); + "</strong>" //Remove needless text and leave only "Times Read NUM"
} //Finishes the for condition
} //Finishes the if condition
} //Finishes the loopscrape2 function
var interval = setInterval(loopscrape, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape() {
if (totalnum === document.querySelectorAll('tbody.list-item tr.more-info strong').length) //Check If The total number of completed entries number is equal to the total number of more links opened, And If Yes These Codes Will Run
{
clearInterval(interval); //Stop running the interval every 2 secs
var moreLinks2 = document.querySelectorAll('tbody.list-item tr.more-info strong');
for (var i = moreLinks2.length; i--;) {
if (moreLinks2[i].innerText === '0') {
$('tbody.list-item')[i].remove();
} //Remove the entry from the list
} //Finishes the for condition
} //Finishes the if condition
} //Finishes the loopscrape function
//Then run this, it's not really necessary to run this, this will only make it easier to know how many times you've reread the mangas
var i;
for (i = 0; i < document.querySelectorAll('tbody.list-item tr.more-info strong').length; i++) {
document.querySelectorAll('tbody.list-item tr.more-info strong')[i].setAttribute("style", "font-size: 16px;background-color: yellow;"); //Make their background yellow
}//Run this only on classic anime lists
var totalnum = document.querySelectorAll("a.animetitle").length //Count total completed entries number
// The 6 lines Below Will Click all links labeled 'More' to get the rewatch counts later on the page
var moreLinks = $("a:contains('More')");
for (var i = moreLinks.length; i--;) {
if (moreLinks[i].innerHTML == 'More') {
moreLinks[i].click();
}
}
var interval = setInterval(loopscrape, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape() {
if (totalnum === document.querySelectorAll("[class='hide'] strong").length) //Check If The total number of completed entries number is equal to the total number of more links opened, And If Yes These Codes Will Run
{
clearInterval(interval); //Stop running the interval every 2 secs
var moreLinks2 = document.querySelectorAll("[class='hide'] strong");
for (var i = moreLinks2.length; i--;) {
if (moreLinks2[i].innerText === '0') {
document.querySelectorAll("[class='hide']")[i].previousElementSibling.remove(); //Remove the entry of the list
document.querySelectorAll("[class='hide']")[i].remove(); //Remove the entry of the list
} //Finishes the if condition
} //Finishes the for condition
} //Finishes the if condition
} //Finishes the loopscrape function
//Then run this, it's not really necessary to run this, this will only make it easier to know how many times you've rewatched the animes
var interval3 = setInterval(loopscrape3, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape3() {
clearInterval(interval3); //Stop running the interval
for (var i = document.querySelectorAll("td.td1.borderRBL strong").length; i--;) {
document.querySelectorAll("td.td1.borderRBL")[i].outerHTML = "This series has been re-watched <strong>" + document.querySelectorAll("td.td1.borderRBL strong")[i].textContent.replace(/[^0-9]+/g, "") + "</strong> times" //Remove needless text and leave only "This series has been re-watched NUM times"
} //Finishes the for condition
} //Finishes the loopscrape3 function
//Then run this, it's not really necessary to run this, this will only make it easier to know how many times you've rewatched the animes
var interval2 = setInterval(loopscrape2, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape2() {
clearInterval(interval2); //Stop running the interval
for (var i = document.querySelectorAll("td.td2.borderRBL strong").length; i--;) {
document.querySelectorAll("td.td2.borderRBL")[i].outerHTML = "This series has been re-watched <strong>" + document.querySelectorAll("td.td2.borderRBL strong")[i].textContent.replace(/[^0-9]+/g, "") + "</strong> times" //Remove needless text and leave only "This series has been re-watched NUM times"
} //Finishes the for condition
} //Finishes the loopscrape2 function
//Then run this, it's not really necessary to run this, this will only make it easier to know how many times you've rewatched the animes
var i;
for (i = 0; i < document.querySelectorAll("[class='hide'] strong").length; i++) {
document.querySelectorAll("[class='hide'] strong")[i].setAttribute("style", "font-size: 16px;background-color: yellow;"); //Make their background yellow
}//Run this only on classic manga lists
var totalnum = document.querySelectorAll("a.animetitle").length //Count total completed entries number
// The 6 lines Below Will Click all links labeled 'More' to get the rewatch counts later on the page
var moreLinks = $("a:contains('More')");
for (var i = moreLinks.length; i--;) {
if (moreLinks[i].innerHTML == 'More') {
moreLinks[i].click();
}
}
var interval3 = setInterval(loopscrape3, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape3() {
clearInterval(interval3); //Stop running the interval
for (var i = document.querySelectorAll("td.td1.borderRBL").length; i--;) {
document.querySelectorAll("td.td1.borderRBL")[i].outerHTML = "Times Read:" + "<strong>" + document.querySelectorAll("td.td1.borderRBL")[i].firstElementChild.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.textContent.replace(/[^0-9]+/g, ""); + "</strong>" //Get the reread value and add the value to <strong>
} //Finishes the for condition
} //Finish the loopscrape3()
var interval2 = setInterval(loopscrape2, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape2() {
clearInterval(interval2); //Stop running the interval
for (var i = document.querySelectorAll("td.td2.borderRBL").length; i--;) {
document.querySelectorAll("td.td2.borderRBL")[i].outerHTML = "Times Read:" + "<strong>" + document.querySelectorAll("td.td2.borderRBL")[i].firstElementChild.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.textContent.replace(/[^0-9]+/g, ""); + "</strong>" //Get the reread value and add the value to <strong>
} //Finishes the for condition
} //Finish the loopscrape2()
var interval = setInterval(loopscrape, 2000); //try to execute the function loopscrape every 2 seconds
function loopscrape() {
if (totalnum === document.querySelectorAll("[class='hide'] strong").length) //Check If The total completed entries number is equal to the total number of more links opened,And If Yes These Codes Will Run
{
clearInterval(interval); //Stop running the interval
var moreLinks2 = document.querySelectorAll("[class='hide'] strong");
for (var i = moreLinks2.length; i--;) { //Loop until condition is met
if (moreLinks2[i].innerText === '0') { //If the reread value is = 0
document.querySelectorAll("[class='hide']")[i].previousElementSibling.remove(); //Remove the entry of the list
document.querySelectorAll("[class='hide']")[i].remove(); //Remove the entry of the list
} //Finish the if condition
} //Finish the for condition
} //Finish the if condition
} //Finish the loopscrape function
//Then run this, it's not really necessary to run this, this will only make it easier to know how many times you've reread the mangas
var i;
for (i = 0; i < document.querySelectorAll("[class='hide'] strong").length; i++) { //Get all the reread values
document.querySelectorAll("[class='hide'] strong")[i].setAttribute("style", "font-size: 16px;background-color: yellow;"); //Make their background yellow
} |
hacker09Oct 8, 2025 4:50 PM
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jul 30, 2020 10:23 PM
#2
| Thank you so much for improving upon this. It works like a charm and is even more convenient and looks better at the same time. |
Jul 31, 2020 4:57 AM
#3
| @Milomite haha, You are welcome! |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Aug 1, 2020 4:01 PM
#4
| im such a luddite I cant even unnerstand the firs step mal should just copy pasta this in thiere records so you can click thet rewatched word and it becomes like a button and shows them all like the watched word is. |
Aug 1, 2020 4:19 PM
#5
KuroudoAkabane said: im such a luddite I cant even understand the first step mal should just copy pasta this in their records so you can click the rewatched word and it becomes like a button and shows them all like the watched word is. I totally agree with you! The 1 step is to install this extension https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en Then install the script https://greasyfork.org/en/scripts/407957 IF AFTER WATCHING THIS YOUTUBE VIDEO YOU STILL HAVE PROBLEMS TO RUN THE SCRIPT, LET ME KNOW AND I WILL HELP YOU! NO WAYYYYYYY! You have ReWatched Afro-Ken 255 times? I thought this was a bug on the script and manually checked it, and the problem is that...this is not a script bug and you really have rewatched this 255 times! The weird thing is that,mal is saying that you've only 128 total rewatched animes, but on your list only Afro-Ken already have 255 rewatched total times,lol,mal is probably bugging as always hahahaha. |
hacker09Jun 6, 2023 12:04 AM
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Aug 22, 2020 12:01 PM
#6
| @KuroudoAkabane https://docdro.id/Q8FB8og |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Sep 1, 2020 3:16 PM
#7
| thanks... 30303030303 |
Sep 1, 2020 3:22 PM
#8
You are welcome!. |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Oct 7, 2021 9:30 PM
#9
| Thanks to this I found the 2 re-watch that's has been bugging me for months and it was going to be really annoying trying to find them within 1500+ anime |
Guys I won't be on for awhile and not sure when im comming back but plz understand there are somethings that is hard to control in life take time to get things moving so i will see u guys soon but this msg is only when i disappear ok. Take care |
Oct 30, 2021 9:30 AM
#10
Kilz said: Thanks to this I found the 2 re-watch that's has been bugging me for months and it was going to be really annoying trying to find them within 1500+ anime You're welcome!! |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Apr 20, 2022 10:45 AM
#11
| Insanely helpful, thanks my guy! |
May 21, 2022 6:47 AM
#12
| Uhmmm it does not work for me but I don't know what I'm doing wrong . . . I'm really sorry to bother you |
May 21, 2022 7:22 AM
#13
| @MeSsI-AKA-FERNO That is not a bothering, it is just a bug report. Thanks for letting me know that, could you please link a couple pages where it does not work, or it just doesn't work on your profile? *I can't test on your profile because "Access to this list has been restricted by the owner." |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
May 22, 2022 3:16 AM
#14
hacker09 said: @MeSsI-AKA-FERNO That is not a bothering, it is just a bug report. Thanks for letting me know that, could you please link a couple pages where it does not work, or it just doesn't work on your profile? *I can't test on your profile because "Access to this list has been restricted by the owner." Oh, I see. I made my list public. and I do have the script installed. Tried generating the rewatch list again just in case it worked but it didn't. https://myanimelist.net/animelist/MeSsI-AKA-FERNO?status=2 |
May 22, 2022 12:21 PM
#15
| @MeSsI-AKA-FERNO It worked for me, try to disable any extensions you may have and also use a chromium based browser. If that does not work after your profile loads press f12 or open the browser dev console, then click on the generate rewatched list button and wait, this should work |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
May 22, 2022 11:24 PM
#16
| Ahhh, that's the page. My bad then, I did see that. I thought it'd appear as a new column in my anime list or something. Sorry 😓 |
May 23, 2022 7:15 AM
#17
| @hacker09 Hah,no... After you open https://myanimelist.net/animelist/MeSsI-AKA-FERNO?status=2 and click on the generate button a loading screen shows up, after that you see the image I linked here with your list, if you don't download, copy or print screen it, it will be gone forever until you repeat the process again... But that's okay, no problem... Good to know that there are no bugs on it and it is working... |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 13, 2023 1:31 PM
#18
| @Peepsqueeker I use tampermonkey and it does not happen with me Try using tampermonkey, then tell me if the issue gets fixed or not... Also, how often/quickly do you get logged out? Does it happen only when you use the script? Or every time you load any profile page? |
hacker09Jun 13, 2023 1:41 PM
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 13, 2023 1:47 PM
#19
| @Peepsqueeker You are right, Violentmonkey is logging me out too, for profiles that do not have anything rewatched, like your 2 friends Are you going to file a Github report @ Violentmonkey then? Partitioned cookie or storage access was provided to “https://www.google.com/recaptcha/api2/aframe” because it is loaded in the third-party context and dynamic state partitioning is enabled. https://developer.mozilla.org/en-US/docs/Web/Privacy/Storage_Access_Policy/Errors/CookiePartitionedForeign Request to access cookie or storage on “https://tpc.googlesyndication.com/sodar/sodar2/225/runner.html” was blocked because it came from a tracker and content blocking is enabled. https://developer.mozilla.org/en-US/docs/Web/Privacy/Storage_Access_Policy/Errors/CookieBlockedTracker WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER. eval line 5491 > eval line 1 > eval line 1 > eval">TH3Zs8Ev3pHjJfWkL7wPbYNWbVKLYksLSDPKh6nMP2Q.js line 2 > eval line 5491 > eval line 1 > eval line 1 > eval:1:117 Content Security Policy: Ignoring “'unsafe-inline'” within script-src: ‘strict-dynamic’ specified https://www.google.com/recaptcha/api2/aframe |
hacker09Jun 13, 2023 1:51 PM
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 13, 2023 1:54 PM
#20
| @Peepsqueeker I found multiple issues with violentmonkey https://myanimelist.net/forum/?topicid=1855693&msgid=69363522#msg69363522 and they all are basically only two https://developer.mozilla.org/en-US/docs/Web/Privacy/Storage_Access_Policy/Errors/CookiePartitionedForeign https://developer.mozilla.org/en-US/docs/Web/Privacy/Storage_Access_Policy/Errors/CookieBlockedTracker Are you going to file a Github report @ Violentmonkey then? Seems like someone already reported this or something really similar over a year ago on https://github.com/violentmonkey/violentmonkey/issues/ |
hacker09Jun 15, 2023 12:44 AM
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 13, 2023 2:04 PM
#21
| @Peepsqueeker No, I just downloaded firefox and installed your extension and my script. I have not changed any settings |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 13, 2023 2:24 PM
#22
| @Peepsqueeker same thing |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 13, 2023 2:49 PM
#23
| @Peepsqueeker I have tried to do what those websites say and add headers: { "Cookie": "SameSite=None" // Add SameSite=None to the Cookie header } on each GM.xmlHttpRequest({ but that did not help I also tried to set network.cookie.cookieBehavior = 0 network.cookie.cookieBehavior.pbmode = 0 and add the two links on the cookies exceptions as allowed https://www.google.com/recaptcha/api2/aframe https://tpc.googlesyndication.com/sodar/sodar2/225/runner.html And I also disabled everything on Custom (blocking protections), but it did not work. I believe that GM.xmlHttpRequest is the issue on Violentmonkey, because it does not let bypass CORS, while tampermonkey does Are you going to file a Github report @ Violentmonkey then? |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 14, 2023 12:41 AM
#24
Jun 14, 2023 11:22 AM
#25
| @IridescentJaune Out of all of those I have only heard about Heroku and ofc Discord. I am not a Discord fan so it won't happen there... Can you give me the Obsidian link? |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 14, 2023 12:14 PM
#26
hacker09 said: @IridescentJaune Out of all of those I have only heard about Heroku and ofc Discord. I am not a Discord fan so it won't happen there... Can you give me the Obsidian link? Alright, I understand. I'm also not so much a fan of Discord but I use it to get updates from servers. I just mentioned it as plenty of people use it. I also mentioned Heroku since I'm not so familiar with other similar services. Some MAL tier lists used to host their sites on Heroku but I believe it's no longer free hence those sites no longer work. I know others also use Netlify, Vercel and of course GitHub. Obsidian is for taking notes with markdown but has so much potential as there are plugins; scripts can also be used. I just thought that it'd be nice to get a markdown file of my rewatched anime and reread manga in Obsidian. https://obsidian.md |
Jun 14, 2023 12:40 PM
#27
| @IridescentJaune Oh ok, I found Obsidian on Google, but it looks like notion and I doubt Obsidian or Notion runs scripts natively, so I thought you were talking about something else.... GitHub and Heroku could work if they are free, but I have never heard of Netlify or Vercel before. The idea is really nice and interesting but I prefer to not create any accounts on websites I do not need to, and I don't want to risk having to pay stuff, plus "All" my mal scripts are already working pretty well enough as they should. So, moving to any website would make me have to rewrite the code and figure out how to make them work on those sites, if possible at all. And this would take a long time probably as if I were making them from scratch again. Also, this script already allows you to download the generated list anyway.... You can copy and paste the list or the HTML, and convert it to whatever you want, many websites convert HTML to other kinds of coding lists too. I kind of plan on adding a few BBCode exporting list types too in the future maybe... |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Jun 14, 2023 1:07 PM
#28
| Alright. I see. Oh, Obsidian is not really like Notion. Hehe. Notion has database tables but Obsidian has the Dataview plugin which I use for my personal DB (I managed to connect my anime, manga, live-action adaptations and OST in a graph via tags). Here's a somewhat better view of how I use Obsidian. Obsidian could run scripts that's why I thought what if I could use some of your scripts in Obsidian... Maybe I could just save them in my vault's folder as a script or snippet using VSCode or another editor. All the markdown files and scripts are stored locally not in the cloud unlike Notion and are easily transferable too. I don't really use VSCode before but because of Obsidian I just had to. LOL. Most of the plugin developers in Obsidian have repos in GitHub. I remember you mentioning about transferring some of your Tampermonkey scripts to GitHub. That'd be really nice, I guess. Obsidian has an active community in Discord, Reddit and their own forum... Anyhow, I just really like using it. Plus, there are themes which are also customizable. It'd be so much cooler to use if I only know how to code or make scripts. Haha. I just follow what I watch and read in tutorials and repos (and modify or tweak some templates to my liking, nothing fancy). Thanks for entertaining me, though. |
Jun 14, 2023 4:58 PM
#29
| @IridescentJaune Thanks for sharing the topic link and those new websites with me! Obsidian does not even use javascript, it uses TypeScript so I would have to "learn" that programming language and convert my whole code for sure, for every single script I ever made to MAL, which would take forever, so I already gave up on the idea, TypeScript is very similar to JS but different too... I want to learn it one day maybe, but not now hahah Thank anyway! |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Sep 11, 2023 9:47 PM
#30
| @Peepsqueeker I am pretty sure that issue has been solved by now |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Sep 23, 2023 9:08 PM
#31
| i may be blind but where is the button hiding? https://prnt.sc/MEgL1icakid9 |
Sep 23, 2023 9:12 PM
#32
| @Smeagol ....................... |
| Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
More topics from this board
» Driftya - Creative Corner (Anime mascot characters)Driftya - Feb 19 |
9 |
by Driftya
»»
1 hour ago |
|
» Have you ever generated anime images with AI software?DesuMaiden - Jan 4 |
31 |
by Driftya
»»
2 hours ago |
|
» Saeryen's Songs!Saeryen - Jul 25, 2025 |
9 |
by Saeryen
»»
6 hours ago |
|
» 【 ART THREAD 】Let's share our art! ❤︎ ( 1 2 3 4 5 ... Last Page )mewmewforever - Aug 30, 2024 |
298 |
by Retro8bit
»»
Feb 20, 4:51 PM |
|
» Share Your YouTube Channel/Videos! ( 1 2 3 4 5 ... Last Page )nin-tendo - Dec 16, 2022 |
658 |
by nin-tendo
»»
Feb 19, 1:22 PM |

