您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes the "Docs home" button to link you to your Drive home instead. I find this to be very convenient now that Google's made Docs and Drive separate things again.
当前为
// ==UserScript== // @name Google Docs - "Docs home" link replacement // @namespace http://github.com/scoliono // @version v1.0 // @description Changes the "Docs home" button to link you to your Drive home instead. I find this to be very convenient now that Google's made Docs and Drive separate things again. // @author James Shiffer // @match https://docs.google.com/* // @grant none // ==/UserScript== var x = document.getElementById('docs-branding-container'); x.innerHTML = '<a href="https://drive.google.com" data-tooltip="Drive home" aria-label="Drive home"><div id="docs-drive-logo"></div><img id="drive-logo" src="https://ssl.gstatic.com/docs/doclist/images/infinite_arrow_favicon_4.ico"/></a>'; var y = document.getElementById('drive-logo'); y.style.margin = '10px 3px';