08/10/19 22:57:42 SBhjwKeT0
>>151 前半
(function(){
window.ucjs_copyTabInfo = function(i){
var tab = document.popupNode;
var txt_title = tab.label;
var txt_url = gBrowser.getBrowserForTab(tab).contentWindow.location.href;
var txt = (i==0)? txt_title:(i==1)? txt_url: txt_title + "\n" + txt_url;
const CLIPBOARD = Components.classes["@mozilla.org/widget/clipboardhelper;1"].getService(Components.interfaces.nsIClipboardHelper);
CLIPBOARD.copyString(txt);
};
var menuitem1 = document.createElement("menuitem");
menuitem1.setAttribute("id", "copy_title_menu");
menuitem1.setAttribute("label", "\u30bf\u30d6\u306e\u30bf\u30a4\u30c8\u30eb\u3092\u30b3\u30d4\u30fc");
menuitem1.setAttribute("oncommand", "ucjs_copyTabInfo(0);");