您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Resizes images to take up the full width and sets height to auto. Only for MBasic Facebook.
当前为
// ==UserScript== // @name MBasic Facebook Image Resize // @namespace http://tampermonkey.net/ // @version 0.3 // @description Resizes images to take up the full width and sets height to auto. Only for MBasic Facebook. // @author NaeemBolchhi // @match https://mbasic.facebook.com/* // @include https://free.facebook.com/* // @grant none // ==/UserScript== (function() { 'use strict'; function MBasicStyleSheet(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); } MBasicStyleSheet('img.basicIMG {height: auto;width: 100%;}') var GET = document.getElementById('root').children[0].children[0].children[0].children[0].children[0].children[0].children[0]; GET.classList.add("basicIMG"); var GET2 = GET.children[0]; GET2.classList.add("basicIMG"); var GET3 = GET2.children[0]; GET3.classList.add("basicIMG"); var GET4 = GET3.children[0]; GET4.classList.add("basicIMG"); var GET5 = GET4.children[0]; GET5.classList.add("basicIMG"); var GET6 = GET5.children[0]; GET6.classList.add("basicIMG"); var GET7 = GET6.children[0]; GET7.classList.add("basicIMG"); var GET8 = GET7.children[0]; GET8.classList.add("basicIMG"); var GET9 = GET8.children[0]; GET9.classList.add("basicIMG"); })();