Google Docs - "Docs home" link replacement

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.

目前為 2014-10-04 提交的版本,檢視 最新版本

// ==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';

QingJ © 2025

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