您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script removes the dropdown selection of the options Reading/Watching,Completed,Plan To Read/Watch and Dropped, and does the same for the Score button, making a bit easier and faster to select what you want.The script also adds a button to delete the anime/manga entry of your list, and adds a button to give the same score + set the whole Franchise as "Watching".
当前为
// ==UserScript== // @name Better Buttons to Change The Status Of Animes/Mangas And To Add Scores // @namespace betterbuttonstomal2 // @version 1.0.7 // @description This script removes the dropdown selection of the options Reading/Watching,Completed,Plan To Read/Watch and Dropped, and does the same for the Score button, making a bit easier and faster to select what you want.The script also adds a button to delete the anime/manga entry of your list, and adds a button to give the same score + set the whole Franchise as "Watching". // @author hacker09 // @include /^https:\/\/myanimelist\.net\/((anime|manga)(id=)?(\.php\?id=)?)(\/)?([\d]+)?/ // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://myanimelist.net&size=64 // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; var $ = window.jQuery; //Defines That The Symbol $ Is A jQuery var animeid = location.pathname.match(/\d+/) === null ? location.search.match(/\d+/)[0] : location.pathname.match(/\d+/)[0]; //Get the anime id var token = document.head.querySelector("[name='csrf_token']").content; //Get the user csrf token document.querySelectorAll("#myinfo_status")[1].size = "5"; //Set the size for the Status button document.querySelectorAll("#myinfo_status")[1].setAttribute("style", "font-size: 13.2px; background-image: none; overflow: hidden;"); //Set the css for the status button document.querySelectorAll("#myinfo_score")[1].size = "11"; //Set the size for the Score button document.querySelectorAll("#myinfo_score > option:nth-child(1)")[1].innerText = 'Reset Score'; //Change the text "selection" to Reset Score document.querySelectorAll("#myinfo_score")[1].setAttribute("style", "background-image: none; overflow: hidden; padding : 5px; width: 100px;"); //Set the css for the score button //***************************************************************************************************************************************************** var DeleteBTN = document.createElement("input"); //Create a input element document.querySelectorAll("#myinfo_status")[1].parentElement.appendChild(DeleteBTN); //Show the delete button $(DeleteBTN).attr({ //Set the attributes value: "Delete", //Add the value Delete to the button id: "DeleteBTN", //Add the id DeleteBTN to the button class: "inputButton ml8 delete_submit", //Add a class to the button type: "button", //Add the type to the button style: "margin-left: 30px!important;" //Set the css to the button }); //Finishing setting the attributes if (window.location.pathname.split('/')[1] === 'anime') { //If the user is on an anime page var entrytype = 'anime'; //Set the variable as anime document.querySelector("div.di-ib.form-user-episode.ml8").setAttribute("style", "width: 125px;"); //Set the css for the episodes element document.querySelectorAll("#myinfo_watchedeps")[1].setAttribute("style", "width: 25px;"); //Set the css for the episodes seen element //***************************************************************************************************************************************************** var ScoreButton = document.createElement("input"); //Create a input element document.querySelectorAll("#myinfo_status")[1].parentElement.appendChild(ScoreButton); //Show the Score button $(ScoreButton).attr({ //Set the attributes value: "Score+Add Franchise", //Add the value Score to the button id: "ScoreBTN", //Add the id ScoreBTN to the button class: "inputButton ml8 delete_submit", //Add a class to the button type: "button", //Add the type to the button style: "margin-left: 30px!important;" //Set the css to the button }); //Finishing setting the attributes document.querySelector("div.di-ib.form-user-episode.ml8").setAttribute("style", "width: 125px;"); //Set the css for the episodes element document.querySelectorAll("#myinfo_watchedeps")[1].setAttribute("style", "width: 25px;"); //Set the css for the episodes seen element document.querySelector("#ScoreBTN").addEventListener("click", (async function() { //Add an advent listener to the Score button that will score and set as "Watching" the whole franchise when clicked if (document.querySelector("#myinfo_score").value === '0') //If the actual score of the anime entry is 0 { //Start the if condition alert('You must first give a score for this entry, then the script will give that same score and add the entire franchise as watching.'); //Show a message return; //Stop the script from executing } //Finishes the if condition const response = await fetch('https://api.allorigins.win/raw?url=https://chiaki.site/?/tools/watch_order/id/' + animeid); //Fetch const html = await response.text(); //Gets the fetch response var ChiakiDocument = new DOMParser().parseFromString(html, 'text/html'); //Parses the fetch response if (confirm("If you've already added this entire franchise to your anime list, press OK.")) { //Ask a question to the user var FetchPage = "https://myanimelist.net/ownlist/anime/edit.json"; //If the user have already added the entire franchise to his anime list } else { //Starts the else condition FetchPage = "https://myanimelist.net/ownlist/anime/add.json"; //If the user doesn't have added the entire franchise on his anime list } //Starts the finishes condition var TotalLinks = ChiakiDocument.querySelectorAll("span.uk-text-muted.uk-text-small > a:nth-child(1)"); //Creates a variable to loop though the elements after for (var i = 0; i < TotalLinks.length; i++) { //Starts the for condition async function AddScore() //Creates a function to Score + set as "Watching" the Franchise { //Starts the function const response = await fetch(FetchPage, { //Fetches the page "headers": { "content-type": "application/x-www-form-urlencoded; charset=UTF-8" }, "body": "{\"anime_id\":" + TotalLinks[i].href.match(/\d+/)[0] + ",\"status\":1,\"score\":" + document.querySelector("#myinfo_score").value + ",\"num_watched_episodes\":0,\"csrf_token\":\"" + token + "\"}", "method": "POST" }); //Finishes the fetch } //Finishes the async function if (TotalLinks[i].href.match(/\d+/)[0] !== animeid) //If the fetched chiaki.site anime id isn't the same as the actual page anime id { //Starts if condition AddScore(); //Starts the async AddScore function } //Finishes the if condition } //Finishes the for condition alert('Done!!!\nThe Whole Franchise was scored with ' + document.querySelector("#myinfo_score").value + ' and was added to your watching anime list!'); //Shows a message })); //Finishes the advent listener //***************************************************************************************************************************************************** } else { //Starts the else condition var entrytype = 'manga'; //Set the variable as manga } //Finishes the else condition document.querySelector("#DeleteBTN").addEventListener("click", (async function() { //Add an advent listener to the delete button that will delete the anime of the user list when clicked await fetch("https://myanimelist.net/ownlist/" + entrytype + "/" + animeid + "/delete", { "headers": { "content-type": "application/x-www-form-urlencoded" }, "body": "csrf_token=" + token + "", "method": "POST" }); //Finishes the fetch request location.reload(); //Reload the page after the user deleted the anime of his list })); //Finish the async function and the advent listener })();