Steam Store Deal Info

Adds links to check for deals to store and community pages

This script is marked as "external"
This script was commisioned by someone else, and I will not check if it works. If it breaks, contact me
Click here to install Browse More Scripts
// ==UserScript==
// @name         Steam Store Deal Info
// @namespace    3c3b4fe07bc4b26edd1c8bc73c57fc006cfb4211
// @version      0.1
// @description  Adds links to check for deals to store and community pages
// @author       /u/AyrA_ch
// @match        https://store.steampowered.com/app/*
// @match        https://steamcommunity.com/app/*
// @external     true
// @expired      false
// @grant        none
// ==/UserScript==

(function () {
    'use strict';
    var title = document.querySelector(".apphub_AppName");
    if (title) {
        var l = document.createElement("a");
        l.href = "https://isthereanydeal.com/search/?q=" + encodeURIComponent(title.textContent);
        l.target = "_blnk";
        l.textContent = "Check Deals";
        l.style.fontSize = "12pt";
        title.appendChild(document.createTextNode(" "));
        title.appendChild(l);
    }
})();

/*
LICENSE:
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
The full license text can be found here: http://creativecommons.org/licenses/by-nc-sa/4.0/
The link has an easy to understand version of the license and the full license text.

DISCLAIMER:
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
*/

Copyright © 2018 by Kevin Gut 📧 | More services | Generated for 3.145.204.140