這是一個TamperMonkey userscript。爲什麼不打開「HELLO」?我在Ubuntu上運行Google Chrome。TamperMonkey userscript不會觸發DOMContentLoaded事件
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://*/*
// @match https://*/*
// @grant none
// ==/UserScript==
window.addEventListener("DOMContentLoaded", function(event) {
alert("HELLO");
});
['document',not'window'](https://developer.mozilla.org/en-US/docs/Web/Events/DOMContentLoaded)。 –
我剛試過,仍然無法使用。 –
作爲比較的基礎,只是做'alert(「HELLO」);'工作。 –