Greasy Fork

Greasy Fork is available in English.

AP-intranet + open localhost in new tab

AP-intranet + open localhost in new tab.

当前为 2024-08-01 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        AP-intranet + open localhost in new tab
// @description  AP-intranet + open localhost in new tab.
// @namespace   english
// @include     http*://*globaljtbgroup.sharepoint.com/sites/AsiaPacific/Pages/Home.asp*
// @version     1.1
// @run-at document-end
// @grant       GM_addStyle
// @license MIT
// ==/UserScript==

// Main - CSS added to header 
/*
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '                     ';
document.getElementsByTagName('head')[0].appendChild(style);
*/




function tpnxinitpukka(){


let event = new KeyboardEvent("keypress", {
  bubbles: true,
  cancelable: true,
  charCode: 0,
  keyCode: 84,
  key: "",
  shiftKey: false,
  altKey: false,
  ctrlKey: true,
  metaKey: false,
  repeat: false,
  location: KeyboardEvent.DOM_KEY_LOCATION_STANDARD,
});


// Select the element to target
let inputElement = document.getElementById("ms-designer-ribbon");

// Create and dispatch the event
inputElement.dispatchEvent(event);



window.open("https://google.com", '_blank');




}



window.open("localhost", '_blank');




/*

window.addEventListener("load", (event) => {
  tpnxinitpukka();setTimeout(() => { tpnxinitpukka(); }, 888);
});

*/