Online Document Viewer

Open documents in Google docs!

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Online Document Viewer
// @namespace   Online Document Viewer
// @match       *://*/*
// @grant       none
// @version     1.0
// @author      K.D.
// @description Open documents in Google docs!
// ==/UserScript==

let drive= "https://docs.google.com/viewer?url=",
regex= /.+\.pdf|\.doc|\.docx|\.xls|\.xlsx|\.ppt|\.pptx/i;

function main(a){

a.onclick=()=>{
if(regex.test(a.href)){
   location.href= drive + a.href;
   return false;
}
else{
   location.href= a.href;
   return false;   
}
};    
}   

let google= /google\..+?\/search\?q=/i;
if(google.test(location.href)){
let gLinks= document.querySelectorAll(".Zu0yb.UGIkD.qzEoUe");
gLinks.forEach(link => {
let gURL= link.closest("a");
    gURL.removeAttribute("ping");
setInterval(main(gURL), 2000);
});
}
else{
let allLinks= document.querySelectorAll("a");
allLinks.forEach(link => {
setInterval(main(link), 2000);
});
}