TresDaos Reader

Custom Viewer

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         TresDaos Reader
// @namespace    http://tampermonkey.net/
// @version      2025-02-09
// @description  Custom Viewer
// @author       AngelXex
// @match        https://tresdaos.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tresdaos.com
// @grant        none
// ==/UserScript==


var temp = document.getElementsByClassName("adblock_title")[0];
temp = temp.parentElement.parentElement.parentElement.parentElement.parentElement;
temp.remove();

var ad1= document.getElementsByClassName("close-btn")[0].remove();
var ad2= document.getElementsByClassName("close-btn2")[0].remove();
var ad3= document.getElementsByClassName("scrollToTop")[0].remove();
var ad4= document.getElementsByClassName("rnavbot")[0].remove();


var zNode = document.createElement ('div');
zNode.innerHTML = '<button id="myButton" type="button">'
                + 'FullScreen</button>'
                ;
zNode.setAttribute ('id', 'myContainer');
const collection = document.getElementsByClassName("npv r");
collection[0].appendChild(zNode);




//--- Activate the newly added button.
document.getElementById ("myButton").addEventListener (
    "click", ButtonClickAction, false
);


function ButtonClickAction (zEvent) {
openFullscreen();
}

/* Get the documentElement (<html>) to display the page in fullscreen */
var elem = document.documentElement;

/* View in fullscreen */
function openFullscreen() {
  if (elem.requestFullscreen) {
    elem.requestFullscreen();
  } else if (elem.webkitRequestFullscreen) { /* Safari */
    elem.webkitRequestFullscreen();
  } else if (elem.msRequestFullscreen) { /* IE11 */
    elem.msRequestFullscreen();
  }
}