Mobile mobileread.com [WIP]

6.07.2024, 11:54:09

2024-12-24 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

// ==UserScript==
// @name        Mobile mobileread.com [WIP]
// @namespace   Violentmonkey Scripts
// @match       https://www.mobileread.com/*
// @grant       none
// @version     0.2.1
// @author      Julia
// @license     GPL3
// @description 6.07.2024, 11:54:09
// ==/UserScript==

(function() {
    'use strict';
    var headElement = document.head || document.getElementsByTagName('head')[0];
    var metaElement = document.createElement('meta');
    metaElement.name = 'viewport';
    metaElement.content = 'width=device-width,initial-scale=1,maximum-scale=1,user-scalable=yes';
    if (headElement) {
        headElement.appendChild(metaElement);
    } else {
        console.error('Cannot find element <head>.');
    }

    let style = document.createElement("style");
    style.innerText = css;
    document.head.appendChild(style);
})();