我正在制作一个应该在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