hanime.tv - avatar & banner helper

This scripts lets you open avatar and banner in a new tab when you click on them.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        hanime.tv - avatar & banner helper
// @namespace   https://myanimelist.net/profile/kyoyatempest
// @include     https://hanime.tv/channel
// @match       https://hanime.tv/channels/*
// @version     1.6
// @author      kyoyacchi
// @description This scripts lets you open avatar and banner in a new tab when you click on them.
// @icon        https://hanime.tv/favicon.ico
// @license gpl-3.0
// @run-at      document-end
// ==/UserScript==


function App(){

let v = document.querySelector(".avatar__image")
? document.querySelector(".avatar__image") : null;

let url = document.querySelector(".avatar__image") ? document.querySelector(".avatar__image").style.backgroundImage.split('"')[1] : null;

if (v){
v.onclick = function () {
  if (url) {
window.open(url, "_blank")

  }
}
}


let banner =document.querySelector(".channel__banner")? document.querySelector(".channel__banner") : null;
let bannerurl = banner ? document.getElementsByClassName("channel__banner__bg_overlay")[0].style.backgroundImage.split('"')[1] : null;



  if (banner){

banner.onclick = function () {
  if (bannerurl == "https://static-assets-44d.pages.dev/images/temp_bg_top.png") {//default
    return
  } else {

   window.open(bannerurl,"_blank")
  }

}
  }


}
window.addEventListener("load",()=>{
  App();
});
let curl = window.location.href
function checkUrl (){
  let newUrl = window.location.href
  if(newUrl != curl){
    App();
  }
}

setInterval(checkUrl,1000);