Save GameFAQs as a text file

Save GameFAQs as a text file.

Verze ze dne 26. 04. 2017. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        Save GameFAQs as a text file
// @description Save GameFAQs as a text file.
// @namespace   undefined
// @include     https://www.gamefaqs.com/*
// @version     0.3
// @grant       none
// ==/UserScript==
(function () {
    "use strict";
    var doc = document;
    var text = doc.getElementById("faqtext").innerHTML;
    var blob;
    var a = doc.createElement("a");
    var filename = doc.URL.substr(doc.URL.lastIndexOf("/") + 1) + ".txt";
    var entity = {
        lt: "<",
        gt: ">",
        amp: "&",
        nbsp: " "
    };
    var unreChar = [];
    var p = doc.getElementsByTagName("p");
    var location;
    var i = 0;
    if (text) {
        text = text.replace(/<\/?span.*?>/g, "");
        text = text.replace(/&([^&;]{2,8});/g, function (match, p1) {
            var r = entity[p1];
            if (r) {
                return r;
            } else {
                unreChar.push(match);
                return match;
            }
        });
        blob = new Blob([text], {
            endings: "native"
        });
        a.href = URL.createObjectURL(blob);
        a.download = filename;
        a.textContent = "Download the Text File";
        a.onclick = function () {
            if (unreChar.length > 0) {
                alert("This document may have some unrecognized characters.\n[" + unreChar[0] + "]");
            }
        };
        while (!location) {
            if (p[i].className === "ffaq_page") {
                location = p[i];
            }
            i += 1;
        }
        if (location) {
            location.appendChild(doc.createElement("br"));
            location.appendChild(a);
        } else {
            doc.body.appendChild(a);
        }
    }
}());