PowerBi Refresh Dataset

Refresh the dataset every 3 minutes

目前为 2016-10-14 提交的版本。查看 最新版本

// ==UserScript==
// @name         PowerBi Refresh Dataset
// @namespace    http://tampermonkey.net/
// @version      1.0.0.3
// @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() {
        $('.contextMenu inactive').each(function () {
            var title = $(this).attr('title');
            alert(title)
        });
    },3 * 1000);

})();