Anilist Banner Downloader

This script rips the top banner of the page on Anilist.co. Works on all pages that have banners (Reviews, series, and profiles!)

目前为 2018-07-21 提交的版本。查看 最新版本

// ==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://gf.qytechs.cn/users/158806
// ==/UserScript==

(function() {
    'use strict';
    var getBanner = document.getElementsByClassName("banner")[0].style.backgroundImage;
    var url = getBanner.replace(/(url\(|\)|'|")/gi, '');
    window.open(url, '_blank');
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址