Refresh the dataset every 3 minutes
当前为
// ==UserScript==
// @name PowerBi Refresh Dataset
// @namespace http://tampermonkey.net/
// @version 1.0.0.32
// @description Refresh the dataset every 3 minutes
// @author Tuval
// @match https://app.powerbi.com/featureddashboard
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
(function () {
'use strict';
setInterval(function() {
setTimeout(function() {
$('a.powerBILogoText').trigger('click');
} ,0);
alert("Hi");
} , 1 * 1000);
});