// ==UserScript== // @name 5chb Image Resize // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match http://log.5chb.net/r/*/* // @icon https://www.google.com/s2/favicons?domain=5chb.net // @grant none // ==/UserScript== (function() { 'use strict'; addGlobalStyle("img[calss='2chimg'] { width: 80%; }"); // Your code here... })(); function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); }