Greasy Fork

Send Azure Intune directly to Endpoint

With Intune moving to endpoint, they now require you to click another link to be able to manage Intune devices. This will now take you directly to endpoint when clicking the link.

当前为 2020-10-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         Send Azure Intune directly to Endpoint
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  With Intune moving to endpoint, they now require you to click another link to be able to manage Intune devices. This will now take you directly to endpoint when clicking the link.
// @author       Joshua_WASD
// @match        https://*portal.azure.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(() => {
        var reply_click = function()
        {
            document.location = "https://endpoint.microsoft.com/"
        }
        document.getElementById('_weave_e_52').onclick = reply_click;
    }, 3000);
})();