Gmail column Width increase Script

Script to add more width to Google Gmail left column.

// ==UserScript==
// @name     Gmail column Width increase Script
// @author   Miguel Ángel Romero Lluch
// @include  https://mail.google.com/mail/u/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @description Script to add more width to Google Gmail left column.
// @version  1
// @namespace https://gf.qytechs.cn/users/174568
// ==/UserScript==

this.$ = this.jQuery = jQuery.noConflict(true);

$(document).ready(function() {
    /**
     * Function to render
     */
    function renderChanges() {
        setTimeout(function() {
            //<div jscontroller="DUNnfe" style="width: 270px;">
          	var obj = $('[jscontroller]');
          	if (('undefined' !== typeof obj) && (obj)) {
            	obj.css({"width":"270px"});
            }
        }, 3000);
    }

    //Loop to set changes each 9 seconds
    //var intervalTime = setInterval(function() {
        renderChanges();
    //},2500);
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址