Justify Article Text

Applies text-align: justify only to content inside <article> tags

// ==UserScript==
// @name         Justify Article Text
// @namespace    http://justify.articles/
// @version      1.1
// @description  Applies text-align: justify only to content inside <article> tags
// @match        *://*/*
// @grant        none
// @run-at       document-start
// @license MIT
// ==/UserScript==

(function () {
  'use strict';

  const style = document.createElement("style");
  style.textContent = `
    p, article, article * {
      text-align: justify !important;
    }
  `;
  document.head.appendChild(style);

  console.log("📰 Article text justified.");
})();