显示lofter.com图片的原图网址

在lofter.com的文章页,显示图片的原图网址,方便下载。

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         显示lofter.com图片的原图网址
// @namespace    https://saber.love/?p=4073
// @version      0.1
// @description  在lofter.com的文章页,显示图片的原图网址,方便下载。
// @author       雪见仙尊 xuejianxianzun
// @match        *.lofter.com/post/*
// @icon 		http://ssf91.lofter.com/favicon.ico
// @run-at		document-end
// ==/UserScript==

'user strict';

let pic_urls = '';
let pic_elements = document.querySelectorAll('.imgclasstag');
if (pic_elements.length > 0) {
	for (const e of pic_elements) {
		pic_urls += e.getAttribute('bigimgsrc').split('?')[0] + '<br>';
	}
	pic_elements[0].parentNode.parentNode.parentNode.parentNode.insertAdjacentHTML('afterbegin', pic_urls);
}