firefox userChrome.js greasemonkeyスクリプトスレ
レス数が950を超えています。1000を超えると書き込みができなくなります。
0975名無しさん@お腹いっぱい。
2007/07/24(火) 16:01:25ID:qYcDSMUt0nsContextMenu.prototype.viewPartialSource = function(event) {
var focusedWindow = document.commandDispatcher.focusedWindow;
if (!focusedWindow || focusedWindow == window)
focusedWindow = content;
if (!focusedWindow.getSelection()) return;
var x = focusedWindow.document.createElement("div");
x.appendChild(focusedWindow.getSelection().getRangeAt(0).cloneContents());
var sel = x.innerHTML;
if(!sel) {
alert("You didn't select any text.");
return;
}
var doctype = focusedWindow.document.contentType;
var charset = "utf-8"; // use unicode
var url = "view-source:data:" + doctype + ";charset=" + charset +
"," + encodeURIComponent(sel);
var tab = gBrowser.addTab(url);
window.setTimeout(function() {
tab.linkedBrowser.contentDocument.title = "DOM Source of Selection";
});
}
レス数が950を超えています。1000を超えると書き込みができなくなります。