Skip to content

Instantly share code, notes, and snippets.

@Lifeni
Created February 7, 2022 03:37
Show Gist options
  • Save Lifeni/72b583b87342dcb0b65b8a3502b6384b to your computer and use it in GitHub Desktop.
Save Lifeni/72b583b87342dcb0b65b8a3502b6384b to your computer and use it in GitHub Desktop.
阻止教资报名网站跳转 ieNote
// ==UserScript==
// @name 阻止教资报名网站跳转 ieNote
// @namespace https://github.com/Lifeni
// @version 0.1
// @description 假装存在 ActiveXObject,从而阻止页面跳转
// @author Lifeni
// @match http://ntcebm4.neea.edu.cn/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
window.ActiveXObject = "假装存在 ActiveXObject"
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment