MBasic Facebook Image Resize

Resizes images to take up the full width and sets height to auto. Only for MBasic Facebook.

2020-04-18 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

Advertisement:

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

Advertisement:

// ==UserScript==
// @name         MBasic Facebook Image Resize
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Resizes images to take up the full width and sets height to auto. Only for MBasic Facebook.
// @author       You
// @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('.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.setAttribute("class", "img basicIMG");
    var GET2 = GET.children[0];
    GET2.setAttribute("class", "img basicIMG");
    var GET3 = GET2.children[0];
    GET3.setAttribute("class", "img basicIMG");
    var GET4 = GET3.children[0];
    GET4.setAttribute("class", "img basicIMG");
    var GET5 = GET4.children[0];
    GET5.setAttribute("class", "img basicIMG");
    var GET6 = GET5.children[0];
    GET6.setAttribute("class", "img basicIMG");
    var GET7 = GET6.children[0];
    GET7.setAttribute("class", "img basicIMG");
    var GET8 = GET7.children[0];
    GET8.setAttribute("class", "img basicIMG");
    var GET9 = GET8.children[0];
    GET9.setAttribute("class", "img basicIMG");
})();