您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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://greasyfork.org/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); });