您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add GOG DB and GOG Games links to the GOG store
当前为
- // ==UserScript==
- // @name GOG additional buttons and downloads
- // @homepageURL https://gog-games.com/
- // @description Add GOG DB and GOG Games links to the GOG store
- // @version 4.0.6
- // @author Wizzergod
- // @license MIT
- // @namespace GOG additional buttons and downloads
- // @icon https://www.google.com/s2/favicons?sz=64&domain=www.gog.com
- // @run-at document-end
- // @match https://www.gog.com/*/game/*
- // @match https://www.gog.com/game/*
- // @match https://web.archive.org/web/*
- // @grant unsafeWindow
- // ==/UserScript==
- (function() {
- var productcardData = unsafeWindow.productcardData;
- var product_id = productcardData.cardProductId;
- var product_slug = productcardData.cardProductSlug;
- var product_title = productcardData.cardProduct.title;
- var separator_element = document.createTextNode(" ");
- function addLink(text, href, className, targetElement) {
- var link_element = document.createElement("a");
- link_element.textContent = text;
- link_element.setAttribute("href", href);
- link_element.className = className;
- link_element.setAttribute("target", "_blank");
- link_element.style = "margin: 5px 0 5px 0 !important; padding: 5px 10px 5px 10px;";
- targetElement.parentNode.insertBefore(separator_element.cloneNode(true), targetElement.nextSibling);
- targetElement.parentNode.insertBefore(link_element, targetElement.nextSibling);
- }
- var mainButtonDeciderElement = document.querySelector("div[main-button-decider].ng-scope");
- if (mainButtonDeciderElement) {
- addLink("View on GOGdb", "https://www.gogdb.org/product/" + product_id, "button button--big cart-button ng-scope", mainButtonDeciderElement);
- addLink("Download Free from - GoGUnlocked", "https://gogunlocked.com/?s=" + product_title, "button button--big cart-button ng-scope", mainButtonDeciderElement);
- addLink("Download Free from - Gog-Games", "https://gog-games.to/search/" + product_title, "button button--big cart-button ng-scope", mainButtonDeciderElement);
- addLink("Download Free from - FreeGogPcGames", "https://freegogpcgames.com/?s=" + product_title, "button button--big cart-button ng-scope", mainButtonDeciderElement);
- }
- element.style = "margin: 5px 0 5px 0 !important; padding: 5px 10px 5px 10px;";
- })();