使用户脚本在没有DNS的情况下运行

时间:2017-06-16 01:36:33

标签: javascript dns userscripts tampermonkey

我正在制作一个应该在http://settings.mysite.edu/(没有DNS)上运行的TamperMonkey用户脚本。虽然脚本没有运行。

脚本:

// ==UserScript==
// @name         Settings
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://settings.mysite.edu
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.write("<!DOCTYPE html><head><title>title</title></head><body><h1>body</h1></body>");
})();

当然,mysite.edu会被真实的域所取代:D

0 个答案:

没有答案