Firefox userChrome.js greasemonkeyスクリプトスレ21at SOFTWARE
Firefox userChrome.js greasemonkeyスクリプトスレ21 - 暇つぶし2ch404:名無しさん@お腹いっぱい。
12/09/13 07:30:19.18 bM0esfAg0
nsContextMenu.prototype.viewPartialSource_orig = nsContextMenu.prototype.viewPartialSource;
nsContextMenu.prototype.viewPartialSource = function(context) {
if (context == "mathml") {
this.viewPartialSource_orig("mathml");
return;
}
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";
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";
});
}


次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch