Automatically read full article

19/05/2025, 13.47.01

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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')
}