This script rips the top banner of the page on Anilist.co. Works on all pages that have banners (Reviews, series, and profiles!)
当前为
// ==UserScript==
// @name Anilist Banner Downloader
// @version 0.1
// @description This script rips the top banner of the page on Anilist.co. Works on all pages that have banners (Reviews, series, and profiles!)
// @author DJ-TrainR3k
// @grant none
// @match https://anilist.co/*
// @run-at context-menu
// @namespace https://greasyfork.org/users/158806
// ==/UserScript==
(function() {
'use strict';
var getBanner = document.getElementsByClassName("banner")[0].style.backgroundImage;
var url = getBanner.replace(/(url\(|\)|'|")/gi, '');
window.open(url, '_blank');
})();