Greasy Fork

Greasy Fork is available in English.

更改telegraph的排版

telegraph不居中

// ==UserScript==
// @name         更改telegraph的排版
// @namespace    http://tampermonkey.net/
// @version      0.11
// @license      MIT
// @description  telegraph不居中
// @author       You
// @match        *://telegra.ph/*
// @grant        none
// ==/UserScript==

(function() {
        var obj = document.querySelectorAll("div,img");
        obj.forEach((item)=>{
            item.style.display="inline"
        })
   obj = document.querySelectorAll("figure");
        obj.forEach((item)=>{
            item.style.display="inline-block"
        })
try { document.getElementById("_report_popup").remove();}
catch(e) { console.log(e);}
})();