fix-reddit-posts

Fixes new expandos that break on the old redesign

Verzia zo dňa 13.08.2019. Pozri najnovšiu verziu.

// ==UserScript==
// @name         fix-reddit-posts
// @namespace    http://azzurite.tv/
// @version      1.1
// @description  Fixes new expandos that break on the old redesign
// @author       You
// @match        https://*.reddit.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(() => {
        const weirdExpandos = document.querySelectorAll('[data-cachedhtml]');
        [].slice.call(weirdExpandos).forEach((expando) => {
            expando.innerHTML = expando.dataset.cachedhtml;
        });
    }, 2000);
})();