Finna Hold Identifier Helper

Displays your Hold Identifier on your Holds and Recalls page by fetching it from your Profile page

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Finna Hold Identifier Helper
// @namespace   raina
// @match       https://*.finna.fi/Holds/List
// @grant       none
// @version     1.2.20241209
// @author      raina
// @description Displays your Hold Identifier on your Holds and Recalls page by fetching it from your Profile page
// ==/UserScript==
let heading = document.querySelector(`h2`);
let span = document.createElement("span");
span.style.float = "right";
span.style.lineHeight = 2;
span.style.fontSize = "smaller";
span.style.marginLeft = "1ex";
span.textContent = localStorage.holdIdentifier ?? "";
heading.append(span);
fetch(`${location.protocol}//${location.host}/MyResearch/Profile`)
.then(response => response.text())
.then(html => {
	const parser = new DOMParser();
	const sampleDoc = parser.parseFromString(html, "text/html");
	const content = sampleDoc.querySelector(`#profile_library_form`);
	let profile_email = content.querySelector(`[name="profile_email"]`);
	span.textContent = profile_email.parentElement.nextElementSibling.textContent;
	span.textContent += " ";
	span.textContent += profile_email.parentElement.nextElementSibling.nextElementSibling.textContent;
	localStorage.holdIdentifier = span.textContent;
});