FA TextViewer

Allows for online viewing of all text based submissions of FurAffinity

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

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

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         FA TextViewer
// @namespace    FurAffinity
// @version      2.0.2
// @description  Allows for online viewing of all text based submissions of FurAffinity
// @author       JaysonHusky
// @match        https://www.furaffinity.net/view/*/
// @grant        none
// @run-at       document-end
// @require      https://code.jquery.com/jquery-latest.js
// ==/UserScript==
(function() {
    'use strict';
$(document).ready(function(){
    var TemplateStyle=$('body').attr('data-static-path');
    var is_book=$("meta[property='og:type']").attr("content");
    var SubmissionDownloadURL="";
    if(TemplateStyle=="/themes/beta"){
        SubmissionDownloadURL=$('a.download-logged-in').attr('href');
        $('#submissionImg').after('<br/><br/><iframe style="width: 900px; height: 900px;" src="https://docs.google.com/gview?url=https:'+SubmissionDownloadURL+'&embedded=true" height="240" width="320" frameborder="0"></iframe>');
    }
    else if(TemplateStyle=="/themes/classic"){
        SubmissionDownloadURL=$('div#text-container a').attr('href');
        $('#submissionImg').after('<br/><br/><iframe style="width: 900px; height: 900px;" src="https://docs.google.com/gview?url=https:'+SubmissionDownloadURL+'&embedded=true" height="240" width="320" frameborder="0"></iframe>');
    }
    else {
        console.log('FA Online Viewer is only activated on story/poetry submissions.');
    }
});
})();