在线预览ppt文档

哈哈哈!

// ==UserScript==
// @name         在线预览ppt文档
// @namespace    http://tampermonkey.net/
// @version      0.8
// @description: zh-CN 在线预览ppt文档时,定时触发鼠标点击事件,自动翻页
// @author       姚涛
// @match        *://*.officeapps.live.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @description 哈哈哈!
// ==/UserScript==
 
(function() {
    'use strict';
    if (window.top === window.self) { return }
    setInterval(()=>document.querySelector('#SlidePanel').click(), 2000)
    // Your code here...
})();