SteamGifts - Giveaway Error Link

https://www.steamgifts.com/discussion/VuO2j/the-link-in-you-dont-have-permission-to-view-this-giveaway-should-point-to-the-game-page-on-steam

目前為 2016-12-22 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         SteamGifts - Giveaway Error Link
// @namespace    Royalgamer06
// @version      0.1
// @description  https://www.steamgifts.com/discussion/VuO2j/the-link-in-you-dont-have-permission-to-view-this-giveaway-should-point-to-the-game-page-on-steam
// @author       Royalgamer06
// @include      /https?\:\/\/(www\.)?steamgifts\.com\/giveaway\/[A-z0-9]{5}\/.+/
// @grant        none
// ==/UserScript==

const change_to_steam_search = false; //If true, searches steam instead of steamgifts

$(document).ready(function() {
    var elem = $(".table__column__secondary-link");
    if (elem.length == 1) elem[0].href = (change_to_steam_search ? "http://store.steampowered.com/search/?term=" : "https://www.steamgifts.com/giveaways/search?q=") + encodeURIComponent(elem[0].innerHTML);
});