是否有一种 Greasemonkey 方法可以将基本 HTML 内容附加到<body>
标签之后或结束之前的页面末尾?
我找到了 before/after 方法,但我需要知道可能会逐页更改元素的名称。
是否有一种 Greasemonkey 方法可以将基本 HTML 内容附加到<body>
标签之后或结束之前的页面末尾?
我找到了 before/after 方法,但我需要知道可能会逐页更改元素的名称。
快速而肮脏的方式:请仅innerHTML
用于全新内容。
var newHTML = document.createElement ('div');
newHTML.innerHTML = ' \
<div id="gmSomeID"> \
<p>Some paragraph</p> \
etc. \
</div> \
';
document.body.appendChild (newHTML);
一个完整的脚本,展示了更好的 jQuery 方式(以及新的 ECMAScript 6,多行字符串):
// ==UserScript==
// @name YOUR_SCRIPT_NAME
// @include http://YOUR_SERVER.COM/YOUR_PATH/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @grant GM_addStyle
// ==/UserScript==
//--- The @grant directive is used to restore the proper sandbox.
$("body").append ( `
<div id="gmSomeID">
<p>Some paragraph</p>
etc.
</div>
` );
这两种方法都会像这样放置新内容:
<!-- NEW STUFF INSERTED HERE -->
</body>
这是一个很好的地方。
即使 HTML 位于页面的末尾,您也可以使用 CSS 将其显示在任何地方,例如:
GM_addStyle ( " \
#gmSomeID { \
position: fixed; \
top: 0px; \
left: 0px; \
} \
" );
如果您不想转义多行 html - 您可以将 HTML 放在本地文件中,然后使用GM_getResourceText
. 确保您已启用 Greasemonkey/Tampermonkey 以使用本地文件。
例如:
// ==UserScript==
// @name Tamper Test
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match file:///C:/david/sandbox/tampermonkey/tamper.html
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @resource html file:///C:/david/sandbox/tampermonkey/foo.html
// @resource style file:///C:/david/sandbox/tampermonkey/style.css
// @grant GM_addStyle
// @grant GM_getResourceText
// ==/UserScript==
(function() {
'use strict';
$("body").append('<div id = "dwj-tamper">new content from tamper script</div>');
GM_addStyle(GM_getResourceText("style"));
$("body").append(GM_getResourceText("html"));
})();
如果篡改脚本仅供您自己使用,则此解决方案很好。您可以类似地在线保存资源。例如:
// @resource pastebin http://pastebin.com/raw/9WfbN24i
//...
$("body").append(GM_getResourceText("pastebin"));
也有效