Add Download Button to TC4Shell.com 7-Zip Plugins Page

So you no longer needs to click into every updated plugin for the download links.

目前為 2021-04-10 提交的版本,檢視 最新版本

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        Add Download Button to TC4Shell.com 7-Zip Plugins Page
// @description So you no longer needs to click into every updated plugin for the download links.
// @namespace   RainSlide
// @author      RainSlide
// @match       *://www.tc4shell.com/en/7zip/
// @match       *://www.tc4shell.com/ru/7zip/
// @version     1.1
// @grant       none
// ==/UserScript==

const plugins = document.querySelectorAll('#content a');

if (plugins.length > 0) {

document.head.appendChild(
	Object.assign(
		document.createElement("style"), {
			textContent: `
#content h1 ~ div > h2 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.button_download_small {
	padding: .5em;
	height: 2em;
	line-height: 1;
	font-family: inherit;
	font-size: smaller;
	background-color: #e84c3d;
}
.button_download_small:hover {
	background-color: #ff605f;
}
`.trim()
		}
	)
);

// const pageURL = location.origin + location.pathname;
const pageURL = new URL("./", location).href;

const match = (x, arr) => arr.some( y => y === x );

plugins.forEach(
	plugin => {

		const parent = plugin.parentNode;

		if (
			plugin.href.replace(/[^/]+\/$/, "") === pageURL &&
			match(parent.tagName, ["H2", "P"])
		) {

			let filename = plugin.textContent.split(" ", 1)[0];

			const href = "/binary/" + (
				match(parent.tagName, ["Asar7z", "Lzip7z"])
					? filename.replace(/7z$/, "")
					: filename
			) + ".zip";

			const download = Object.assign(
				document.createElement("a"), {
					href, download: "", textContent: "Download"
				}
			);

			if (parent.tagName === "H2") {
				download.className = "button button_download_small";
				plugin.after(download);
			} else if (parent.tagName === "P") {
				plugin.after(" (", download, ")");
			}

		}

	}
);

}