Automatically read full article

19/05/2025, 13.47.01

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        Automatically read full article
// @namespace   https://doubly.so/user-scripts
// @match       https://www.realclearscience.com/*
// @match       https://www.realclearpolitics.com/*
// @match       https://www.realclearpolicy.com/*
// @match       https://www.realcleardefence.com/*
// @match       https://www.realclearworld.com/*
// @grant       none
// @version     1.0
// @author      Devin Bayer <[email protected]>
// @license     MIT
// @description 19/05/2025, 13.47.01
// ==/UserScript==

$ = (q) => document.querySelector(q)

if (! window.location.hash) {
  console.info('user script - auto read')
  window.location.hash = 'auto-read-full'
  $('.more-link a').click()
} else {
  console.log('user script - skipping auto read due to reload / back button')
}