diff --git a/_keysnail.js b/_keysnail.js index f77672c..d99175f 100644 --- a/_keysnail.js +++ b/_keysnail.js @@ -13,41 +13,41 @@ // Original is at https://gist.github.com/Griever/62715 ext.add("open-bookmarks-in-new-tab", function(){ - // this makes all clicks open in new tab. - // return; - // test if firefox 12 - if (12 > parseFloat(Cc['@mozilla.org/xre/app-info;1']. - getService(Ci.nsIXULAppInfo).version)) { - return; - } - - - // I cannot fully understand what happen but keysnail emit error - // *after* initialization of firefox finished successfully and I assured - // that new tabs open as I expect when clicking bookmarks, for example, - // when I try to tweet using the twitter keysnail plugin, with error - // message saying "whereToOpenLink is undefined.". - - // if no modifier key pressed open in new tab. - try { - var whereToOpenLink_org = new String(window.whereToOpenLink.toString()); - window.whereToOpenLink = eval( - "(" + - whereToOpenLink_org.replace( - '{', - '{ if(!e || ' + - '(!e.ctrlKey && !e.shiftKey && !e.metaKey && ' + - '!(e.altKKey && !ignoreAlt))) ' + - 'return "tab";' - ) + - ")" - ); - } catch (e if e instanceof TypeError) { - return; - } + // this makes all clicks open in new tab. + // return; + // test if firefox 12 + if (12 > parseFloat(Cc['@mozilla.org/xre/app-info;1']. + getService(Ci.nsIXULAppInfo).version)) { + return; + } + + + // I cannot fully understand what happen but keysnail emit error + // *after* initialization of firefox finished successfully and I assured + // that new tabs open as I expect when clicking bookmarks, for example, + // when I try to tweet using the twitter keysnail plugin, with error + // message saying "whereToOpenLink is undefined.". + + // if no modifier key pressed open in new tab. + try { + var whereToOpenLink_org = new String(window.whereToOpenLink.toString()); + window.whereToOpenLink = eval( + "(" + + whereToOpenLink_org.replace( + '{', + '{ if(!e || ' + + '(!e.ctrlKey && !e.shiftKey && !e.metaKey && ' + + '!(e.altKKey && !ignoreAlt))) ' + + 'return "tab";' + ) + + ")" + ); + } catch (e if e instanceof TypeError) { + return; + } - // This is useless because this makes reload open new tab. - // window.whereToOpenLink = function(e, ib, ia){ return "tab"; }; + // This is useless because this makes reload open new tab. + // window.whereToOpenLink = function(e, ib, ia){ return "tab"; }; }, "open in new tab"); // ext.exec("open-bookmarks-in-new-tab"); @@ -77,40 +77,40 @@ function ignore(k, i) [k, null]; // ]]>.toString() // ); style.register( - '@-moz-document ' + - 'url-prefix(\"http://www.tumblr.com/\"), ' + - 'url-prefix(\"https://www.tumblr.com/\") ' + - '{ #pagination {' + - 'position: fixed;' + - 'bottom: 50px;' + - 'right: 100px;' + - 'padding-right: 0px !important' + - '} }' , style.XHTML); + '@-moz-document ' + + 'url-prefix(\"http://www.tumblr.com/\"), ' + + 'url-prefix(\"https://www.tumblr.com/\") ' + + '{ #pagination {' + + 'position: fixed;' + + 'bottom: 50px;' + + 'right: 100px;' + + 'padding-right: 0px !important' + + '} }' , style.XHTML); /////////////////////////////////// //search engine plugins.options["search-url-list"] = [ - ["bing","http://bing.com/search?q=%q"], - ["yatwitter search","http://yats-data.com/yats/search?query=%q"], - ["twitter search","http://twitter.com/search?q=%q&lang=all"], - ["tospy", "http://topsy.com/s?allow_lang=ja&q=%q"], - ["2ch","http://2ch-ranking.net/search.php?q=%q&imp=and&order=time"], - ["2ch_ttsearch", "http://ttsearch.net/s2.cgi?k=%q&o=r"], - ["I\'m feelig lucky!","http://www.google.co.jp/search?q=%q&btnI=kudos"], - ["uncyclopedia","http://ja.uncyclopedia.info/wiki/%q"], - ["wikipedia","http://ja.wikipedia.org/wiki/%q"], - ["nicovideo.jp","http://www.nicovideo.jp/search/%q"], - ["alc","http://eow.alc.co.jp/%q/UTF-8/"], - ["google map", - "http://maps.google.co.jp/maps?hl=ja&q=%q&um=1&ie=UTF-8&sa=N&tab=wl"], - ["weblio","http://www.weblio.jp/content_find?query=%q"], - ["shoutcast","http://www.shoutcast.com/Internet-Radio/%q"], - ["delicious 10sr", "http://delicious.com/10sr/%q"], - ["open raw","%r"] + ["bing","http://bing.com/search?q=%q"], + ["yatwitter search","http://yats-data.com/yats/search?query=%q"], + ["twitter search","http://twitter.com/search?q=%q&lang=all"], + ["tospy", "http://topsy.com/s?allow_lang=ja&q=%q"], + ["2ch","http://2ch-ranking.net/search.php?q=%q&imp=and&order=time"], + ["2ch_ttsearch", "http://ttsearch.net/s2.cgi?k=%q&o=r"], + ["I\'m feelig lucky!","http://www.google.co.jp/search?q=%q&btnI=kudos"], + ["uncyclopedia","http://ja.uncyclopedia.info/wiki/%q"], + ["wikipedia","http://ja.wikipedia.org/wiki/%q"], + ["nicovideo.jp","http://www.nicovideo.jp/search/%q"], + ["alc","http://eow.alc.co.jp/%q/UTF-8/"], + ["google map", + "http://maps.google.co.jp/maps?hl=ja&q=%q&um=1&ie=UTF-8&sa=N&tab=wl"], + ["weblio","http://www.weblio.jp/content_find?query=%q"], + ["shoutcast","http://www.shoutcast.com/Internet-Radio/%q"], + ["delicious 10sr", "http://delicious.com/10sr/%q"], + ["open raw","%r"] ]; plugins.options["my-keysnail-bookmarks"] = [ - "twitter.com" + "twitter.com" ]; // sitelocal keymap @@ -123,59 +123,59 @@ util.setIntPref("extensions.chaika.server_port.firefox", 8800 + Math.floor(Math.random() * 30)); local["^http://127.0.0.1:88"] = [ - ['k', function(ev, arg){ - curl = window.content.location.href; - kurl = curl.replace(/http:.*thread\/(.*\/).*/, "chaika://post/$1"); - window.content.location.href = kurl; - } - ] + ['k', function(ev, arg){ + curl = window.content.location.href; + kurl = curl.replace(/http:.*thread\/(.*\/).*/, "chaika://post/$1"); + window.content.location.href = kurl; + } + ] ]; local["^http://w2.p2.2ch.net/p2/read.php"] = [ - ['k', function(ev, arg){ - var url = window.content.location.href; - var pt = /host=(.*?)&bbs=(.*?)&key=(.*?)&ls=/ ; - var result = url.match(pt); - var k = format("chaika://post/http://%s/test/read.cgi/%s/%s/", - result[1], result[2], result[3]); - window.content.location.href = k; - } - ] + ['k', function(ev, arg){ + var url = window.content.location.href; + var pt = /host=(.*?)&bbs=(.*?)&key=(.*?)&ls=/ ; + var result = url.match(pt); + var k = format("chaika://post/http://%s/test/read.cgi/%s/%s/", + result[1], result[2], result[3]); + window.content.location.href = k; + } + ] ]; ///////////////////////////////////////// // feedly local["^https?://(www\.|cloud\.|)feedly\.com/"] = [ - ['d', null], - ['j', null], - ['k', null], - ['n', null], - ['p', null], - ['o', null], - ['b', null], - ['S', null], - ['s', null], - ['?', null], - ['r', null], - ['g', null], - // ['x', function(ev, arg){ - // ev.target.dispatchEvent(key.stringToKeyEvent("g", true)); - // }], - // ['l', function(ev, arg){ - // var host = window.content.location.host; - // if (host === "cloud.feedly.com" || host === "feedly.com") { - // window.content.location.href = "http://" + host + "/#latest"; - // } else if (host === "www.feedly.com") { - // window.content.location.href = "http://" + host + "/home#latest"; - // } - // }], - ['a', null], - [['t', 'p'], function(ev, arg){ - ev.target.dispatchEvent(key.stringToKeyEvent("t", true)); - }], - [['t', 'w'], function(ev, arg){ - ext.exec("twitter-client-tweet", arg, ev); - }] + ['d', null], + ['j', null], + ['k', null], + ['n', null], + ['p', null], + ['o', null], + ['b', null], + ['S', null], + ['s', null], + ['?', null], + ['r', null], + ['g', null], + // ['x', function(ev, arg){ + // ev.target.dispatchEvent(key.stringToKeyEvent("g", true)); + // }], + // ['l', function(ev, arg){ + // var host = window.content.location.host; + // if (host === "cloud.feedly.com" || host === "feedly.com") { + // window.content.location.href = "http://" + host + "/#latest"; + // } else if (host === "www.feedly.com") { + // window.content.location.href = "http://" + host + "/home#latest"; + // } + // }], + ['a', null], + [['t', 'p'], function(ev, arg){ + ev.target.dispatchEvent(key.stringToKeyEvent("t", true)); + }], + [['t', 'w'], function(ev, arg){ + ext.exec("twitter-client-tweet", arg, ev); + }] ]; ///////////////////////////////////////// @@ -198,36 +198,36 @@ local["^https?://(www\.|cloud\.|)feedly\.com/"] = [ ///////////////////////////////////////// // tumblr/dashboard local["^http://www.tumblr.com/dashboard"] = [ - // ["C-", function(ev, arg){ - // gBrowser.mTabContainer.advanceSelectedTab(-1, true); - // }], - // ["C-", function(ev, arg){ - // gBrowser.mTabContainer.advanceSelectedTab(1, true); - // }], - ["", function(ev, arg){ - window.content.location.href = "http://www.tumblr.com/dashboard"; - }], - ["", null], - ["J", function(ev, arg){ - if (window.loadURI) { - loadURI("javascript:(function(){b=20;s=100;t=document.getElementById('next_page_link').href.split('/')[5];max=t.substr(0,t.length-5);min=max-s;i=Math.floor(Math.random()*(max-min)+min);u=(i", function(ev, arg){ + // gBrowser.mTabContainer.advanceSelectedTab(-1, true); + // }], + // ["C-", function(ev, arg){ + // gBrowser.mTabContainer.advanceSelectedTab(1, true); + // }], + ["", function(ev, arg){ + window.content.location.href = "http://www.tumblr.com/dashboard"; + }], + ["", null], + ["J", function(ev, arg){ + if (window.loadURI) { + loadURI("javascript:(function(){b=20;s=100;t=document.getElementById('next_page_link').href.split('/')[5];max=t.substr(0,t.length-5);min=max-s;i=Math.floor(Math.random()*(max-min)+min);u=(i" - ); - } + var doc = content ? content.document : document; + var dBody = doc.body; + if (dBody && !util.isFrameSetWindow(content)) { + // if page has been prepared + _display( + "[" + + (idx + 1).toString() + "/" + + len.toString() + "] " + + title + " <" + + decodeURIComponent(url) + ">" + ); } + } - return { - echo: echo - }; + return { + echo: echo + }; })(); ext.add("open-remote-init-file", function(ev, arg){ - const URL = "https://raw.github.com/10sr/dotfiles/master/_keysnail.js"; - window.openUILinkIn(URL, "tab"); + const URL = "https://raw.github.com/10sr/dotfiles/master/_keysnail.js"; + window.openUILinkIn(URL, "tab"); }, "Open remote initialization file"); var updateInitFile = (function(){ - const URL = "https://raw.github.com/10sr/dotfiles/master/_keysnail.js"; - - // content/modules/userscript.js - // copy file from aFile - function placeFile(aFile, force) { - var dstdir = util.getUnicharPref("extensions.keysnail.userscript.location"); - if (dstdir === "") { - throw util.getLocaleString("failedToInstallFile", [aFile.leafName]) + " :: " + x; - } + const URL = "https://raw.github.com/10sr/dotfiles/master/_keysnail.js"; + + // content/modules/userscript.js + // copy file from aFile + function placeFile(aFile, force) { + var dstdir = util.getUnicharPref("extensions.keysnail.userscript.location"); + if (dstdir === "") { + throw util.getLocaleString("failedToInstallFile", [aFile.leafName]) + " :: " + x; + } + + try + { + // calc dir from path + let destinationDir = util.openFile(dstdir); + let destinationFile = util.openFile(dstdir); + + destinationFile.append(aFile.leafName); - try + if (destinationFile.exists()) + { + if (util.hashFile(aFile) === util.hashFile(destinationFile)) { - // calc dir from path - let destinationDir = util.openFile(dstdir); - let destinationFile = util.openFile(dstdir); - - destinationFile.append(aFile.leafName); - - if (destinationFile.exists()) - { - if (util.hashFile(aFile) === util.hashFile(destinationFile)) - { - // no need to install this file - return destinationFile; - } - - let confirmed = force || - util.confirm( - util.getLocaleString("overWriteConfirmationTitle"), - util.getLocaleString("overWriteConfirmation", - [destinationFile.path]) - ); - - if (!confirmed) { - throw util.getLocaleString("canceledByUser"); - } - } - - aFile.moveTo(destinationDir, ""); - - return destinationFile; + // no need to install this file + return destinationFile; } - catch (x) - { - throw util.getLocaleString("failedToInstallFile", - [aFile.leafName]) + - " :: " + x; + + let confirmed = force || + util.confirm( + util.getLocaleString("overWriteConfirmationTitle"), + util.getLocaleString("overWriteConfirmation", + [destinationFile.path]) + ); + + if (!confirmed) { + throw util.getLocaleString("canceledByUser"); } - } + } - function updateFile() { - util.httpGet(URL, false, function (req) { - if (req.status !== 200) { - util.message(req.responseText); - } - - try { - let name = util.getLeafNameFromURL(URL); - let file = userscript.writeTextTmp(name, req.responseText); - let installed = placeFile(file); - util.message(installed.path + " installed"); - display.showPopup("update-init-file", - installed.path + " installed") - } catch (x) { - util.message( - "An error occured while installing required scripts :: " + - x.message - ); - display.showPopup( - "update-init-file", - "An error occured while installing required scripts :: " + - x.message - ); - } - }); + aFile.moveTo(destinationDir, ""); + + return destinationFile; + } + catch (x) + { + throw util.getLocaleString("failedToInstallFile", + [aFile.leafName]) + + " :: " + x; } + } + + function updateFile() { + util.httpGet(URL, false, function (req) { + if (req.status !== 200) { + util.message(req.responseText); + } + + try { + let name = util.getLeafNameFromURL(URL); + let file = userscript.writeTextTmp(name, req.responseText); + let installed = placeFile(file); + util.message(installed.path + " installed"); + display.showPopup("update-init-file", + installed.path + " installed") + } catch (x) { + util.message( + "An error occured while installing required scripts :: " + + x.message + ); + display.showPopup( + "update-init-file", + "An error occured while installing required scripts :: " + + x.message + ); + } + }); + } - return { - updateFile: updateFile - }; + return { + updateFile: updateFile + }; })(); ext.add("update-init-file", updateInitFile.updateFile, "update init file"); var importExportBookmarks = (function(){ - function getOrganizer(){ - // [How to call for Firefox bookmark dialog? - Stack Overflow] - // (http://stackoverflow.com/questions/9158187/how-to-call-for-firefox-bookmark-dialog) - Components.utils.import("resource://gre/modules/Services.jsm"); - - var organizer = Services.wm.getMostRecentWindow("Places:Organizer"); - if (!organizer) { - // No currently open places window, - // so open one with the specified mode. - openDialog("chrome://browser/content/places/places.xul", - "", - "chrome,toolbar=yes,dialog=no,resizable", - "AllBookmarks"); - return null; - } else { - return organizer; - } + function getOrganizer(){ + // [How to call for Firefox bookmark dialog? - Stack Overflow] + // (http://stackoverflow.com/questions/9158187/how-to-call-for-firefox-bookmark-dialog) + Components.utils.import("resource://gre/modules/Services.jsm"); + + var organizer = Services.wm.getMostRecentWindow("Places:Organizer"); + if (!organizer) { + // No currently open places window, + // so open one with the specified mode. + openDialog("chrome://browser/content/places/places.xul", + "", + "chrome,toolbar=yes,dialog=no,resizable", + "AllBookmarks"); + return null; + } else { + return organizer; } - ext.add("export-bookmarks", function(ev, arg){ - var organizer = getOrganizer(); - if (organizer) { - organizer.PlacesOrganizer.exportBookmarks(); - } - }, "export bookmarks"); - ext.add("import-bookmarks", function(ev, arg){ - var organizer = getOrganizer(); - if (organizer) { - organizer.PlacesOrganizer.importBookmarks(); - } - }, "import bookmarks"); + } + ext.add("export-bookmarks", function(ev, arg){ + var organizer = getOrganizer(); + if (organizer) { + organizer.PlacesOrganizer.exportBookmarks(); + } + }, "export bookmarks"); + ext.add("import-bookmarks", function(ev, arg){ + var organizer = getOrganizer(); + if (organizer) { + organizer.PlacesOrganizer.importBookmarks(); + } + }, "import bookmarks"); - return { - getOrganizer: getOrganizer - }; + return { + getOrganizer: getOrganizer + }; })(); ext.add("my-index-html", function(ev, arg){ - homepath = util.getEnv("HOME"); - file = ".index.html"; - if (homepath) { - path = "file://" + homepath + "/" + file; - window.openUILinkIn(path, "tab"); - } + homepath = util.getEnv("HOME"); + file = ".index.html"; + if (homepath) { + path = "file://" + homepath + "/" + file; + window.openUILinkIn(path, "tab"); + } }, "open my index.html"); ext.add("strong-fullscreen", function(){ - var elemids = [ - "navigator-toolbox" - ]; - BrowserFullScreen(); - var isfullscreen = window.fullScreen; - - for(var i = 0; i < elemids.length; i++){ - var elem = document.getElementById(elemids[i]); - if(elem){ - if(isfullscreen){ - elem.style.display = "none"; - }else{ - elem.style.display = null; - } - } + var elemids = [ + "navigator-toolbox" + ]; + BrowserFullScreen(); + var isfullscreen = window.fullScreen; + + for(var i = 0; i < elemids.length; i++){ + var elem = document.getElementById(elemids[i]); + if(elem){ + if(isfullscreen){ + elem.style.display = "none"; + }else{ + elem.style.display = null; + } } - - var tabs = document.getElementById("verticaltabs-box"); - if(tabs){ - var pref_key = "extensions.verticaltabs.width"; - var pref_key_bak = pref_key + "_bak"; - if(isfullscreen){ - var width_orig = util.getIntPref(pref_key); - util.setIntPref(pref_key_bak, width_orig); - util.setIntPref(pref_key, 0); - tabs.setAttribute("width", "0"); - }else if(parseInt(tabs.getAttribute("width") || "") === 0){ - var width_bak = util.getIntPref(pref_key_bak); - util.setIntPref(pref_key, width_bak); - tabs.setAttribute("width", width_bak.toString()); - } + } + + var tabs = document.getElementById("verticaltabs-box"); + if(tabs){ + var pref_key = "extensions.verticaltabs.width"; + var pref_key_bak = pref_key + "_bak"; + if(isfullscreen){ + var width_orig = util.getIntPref(pref_key); + util.setIntPref(pref_key_bak, width_orig); + util.setIntPref(pref_key, 0); + tabs.setAttribute("width", "0"); + }else if(parseInt(tabs.getAttribute("width") || "") === 0){ + var width_bak = util.getIntPref(pref_key_bak); + util.setIntPref(pref_key, width_bak); + tabs.setAttribute("width", width_bak.toString()); } + } }, "go fullscreen with hiding toolbar and tabbar"); ext.add("bookmark-delicious", function(){ - f= 'http://www.delicious.com/save?url=' + - encodeURIComponent(window.content.location.href) + - '&title=' + encodeURIComponent(document.title) + - '¬es=' + encodeURIComponent( - '' + (window.getSelection ? - window.getSelection() : ( - document.getSelection ? - document.getSelection() : - document.selection.createRange().text))) + '&v=6&'; - a = function(){ - if(! window.open( - f + 'noui=1&jump=doclose', - 'deliciousuiv6', - 'location=1,links=0,scrollbars=0,toolbar=0,width=710,height=660')){ - location.href = f + 'jump=yes'; - } - }; - if(/Firefox/.test(navigator.userAgent)){ - setTimeout(a,0); - }else{ - a(); + f= 'http://www.delicious.com/save?url=' + + encodeURIComponent(window.content.location.href) + + '&title=' + encodeURIComponent(document.title) + + '¬es=' + encodeURIComponent( + '' + (window.getSelection ? + window.getSelection() : ( + document.getSelection ? + document.getSelection() : + document.selection.createRange().text))) + '&v=6&'; + a = function(){ + if(! window.open( + f + 'noui=1&jump=doclose', + 'deliciousuiv6', + 'location=1,links=0,scrollbars=0,toolbar=0,width=710,height=660')){ + location.href = f + 'jump=yes'; } + }; + if(/Firefox/.test(navigator.userAgent)){ + setTimeout(a,0); + }else{ + a(); + } }, "bookmark delicious"); ext.add('view-page-source', function(){ - window.content.location.href = "view-source:" + - window.content.location.href; + window.content.location.href = "view-source:" + + window.content.location.href; }, 'view page source'); ext.add('my-setpref', function(){ + util.setPrefs( + { + "browser.bookmarks.max_backups":0, + "browser.cache.memory.capacity":16384, + "browser.download.manager.closeWhenDone":true, + "browser.download.useDownloadDir":false, + "browser.fullscreen.autohide":false, + "browser.search.openintab":true, + "browser.sessionhistory.max_total_viewers":8, + "browser.sessionstore.restore_on_demand":true, + "browser.tabs.closeWindowWithLastTab":false, + "browser.tabs.loadDivertedInBackground": true, + "browser.urlbar.autocomplete.enabled":false, + "browser.urlbar.trimURLs":false, + "dom.disable_window_open_feature.location": false, + "dom.max_script_run_time": 30, + "extensions.chaika.bbsmenu.open_new_tab":true, + "extensions.chaika.bbsmenu.open_single_click":false, + "extensions.chaika.board.open_new_tab":true, + "extensions.chaika.board.open_single_click":false, + "extensions.foxage2ch.openThreadInTab":true, + "extensions.saveimageinfolder.general-duplicatefilenamevalue":1, + "extensions.saveimageinfolder.general-fileprefixvalue": + "%yyyy%%MM%%dd%-%hh%%mm%%ss%_", + "extensions.saveimageinfolder.usecache":true, + "extensions.tabutils.openTabNext":1, + "extensions.tabutils.styles.current": + "{\"bold\":true,\"italic\":false,\"underline\":true,\"strikethrough\":false,\"color\":true,\"colorCode\":\"#000000\",\"bgColor\":false,\"bgColorCode\":\"#000000\",\"outline\":false,\"outlineColorCode\":\"#000000\"}", + "extensions.tabutils.styles.unread": + "{\"bold\":false,\"italic\":false,\"underline\":false,\"strikethrough\":false,\"color\":true,\"colorCode\":\"#CC0000\",\"bgColor\":false,\"bgColorCode\":\"undefined\",\"outline\":false,\"outlineColorCode\":\"undefined\"}", + "extensions.tabutils.TFS_Enable":false, + "extensions.yass.edgetype":0, + "extensions.yass.selectedpreset":"red", + "font.default.x-western":"sans-serif", + "gecko.handlerService.schemes.mailto.1.name":"Gmail", + "general.warnOnAboutConfig":false, + "keyword.URL":"http://www.bing.com/search?q=", + "browser.search.defaultenginename":"Bing", + "browser.search.defaulturl":"http://www.bing.com/search?q=", + "network.dns.disableIPv6":true, + "refcontrol.actions": + "@DEFAULT=@FORGE www.heartrails.com=@NORMAL www.pixiv.net=@NORMAL", + "scrapbook.tabs.open":true + } + ); + if(/^Linux/.test(navigator.platform)){ util.setPrefs( - { - "browser.bookmarks.max_backups":0, - "browser.cache.memory.capacity":16384, - "browser.download.manager.closeWhenDone":true, - "browser.download.useDownloadDir":false, - "browser.fullscreen.autohide":false, - "browser.search.openintab":true, - "browser.sessionhistory.max_total_viewers":8, - "browser.sessionstore.restore_on_demand":true, - "browser.tabs.closeWindowWithLastTab":false, - "browser.tabs.loadDivertedInBackground": true, - "browser.urlbar.autocomplete.enabled":false, - "browser.urlbar.trimURLs":false, - "dom.disable_window_open_feature.location": false, - "dom.max_script_run_time": 30, - "extensions.chaika.bbsmenu.open_new_tab":true, - "extensions.chaika.bbsmenu.open_single_click":false, - "extensions.chaika.board.open_new_tab":true, - "extensions.chaika.board.open_single_click":false, - "extensions.foxage2ch.openThreadInTab":true, - "extensions.saveimageinfolder.general-duplicatefilenamevalue":1, - "extensions.saveimageinfolder.general-fileprefixvalue": - "%yyyy%%MM%%dd%-%hh%%mm%%ss%_", - "extensions.saveimageinfolder.usecache":true, - "extensions.tabutils.openTabNext":1, - "extensions.tabutils.styles.current": - "{\"bold\":true,\"italic\":false,\"underline\":true,\"strikethrough\":false,\"color\":true,\"colorCode\":\"#000000\",\"bgColor\":false,\"bgColorCode\":\"#000000\",\"outline\":false,\"outlineColorCode\":\"#000000\"}", - "extensions.tabutils.styles.unread": - "{\"bold\":false,\"italic\":false,\"underline\":false,\"strikethrough\":false,\"color\":true,\"colorCode\":\"#CC0000\",\"bgColor\":false,\"bgColorCode\":\"undefined\",\"outline\":false,\"outlineColorCode\":\"undefined\"}", - "extensions.tabutils.TFS_Enable":false, - "extensions.yass.edgetype":0, - "extensions.yass.selectedpreset":"red", - "font.default.x-western":"sans-serif", - "gecko.handlerService.schemes.mailto.1.name":"Gmail", - "general.warnOnAboutConfig":false, - "keyword.URL":"http://www.bing.com/search?q=", - "browser.search.defaultenginename":"Bing", - "browser.search.defaulturl":"http://www.bing.com/search?q=", - "network.dns.disableIPv6":true, - "refcontrol.actions": - "@DEFAULT=@FORGE www.heartrails.com=@NORMAL www.pixiv.net=@NORMAL", - "scrapbook.tabs.open":true - } + { + "browser.cache.disk.parent_directory":"/tmp", + "browser.cache.disk.capacity":524288 + } ); - if(/^Linux/.test(navigator.platform)){ - util.setPrefs( - { - "browser.cache.disk.parent_directory":"/tmp", - "browser.cache.disk.capacity":524288 - } - ); - } - display.showPopup("Keysnail", "My prefs done."); + } + display.showPopup("Keysnail", "My prefs done."); }, 'my setpref'); ext.add('auto-install-plugins', function(ev, arg){ - var urls = [ - 'https://raw.github.com/mooz/keysnail/master/plugins/yet-another-twitter-client-keysnail.ks.js', - 'https://raw.github.com/mooz/keysnail/master/plugins/site-local-keymap.ks.js', - 'https://raw.github.com/mooz/keysnail/master/plugins/hok.ks.js', - 'https://github.com/mooz/keysnail/raw/master/plugins/builtin-commands-ext.ks.js', - 'https://raw.github.com/azu/KeySnail-Plugins/master/JSReference/js-referrence.ks.js', - 'https://raw.github.com/gongo/keysnail_plugin/master/linksnail.ks.js', - 'https://raw.github.com/tkosaka/keysnail-plugin/master/nicontroller.ks.js', - 'https://raw.github.com/10sr/keysnail-plugin/master/shiitake.ks.js', - 'https://raw.github.com/10sr/keysnail-plugin/master/dig-url.ks.js', - 'https://raw.github.com/10sr/keysnail-plugin/master/instapaper.ks.js', - 'https://raw.github.com/10sr/keysnail-plugin/master/pixiv_autojump.ks.js', - 'https://raw.github.com/10sr/keysnail-plugin/master/list-current-urls.ks.js', - 'https://gist.githubusercontent.com/10sr/1976942/raw/firefox-addon-manager.ks.js', - 'https://gist.githubusercontent.com/958/1450594/raw/mstranslator.ks.js' - ]; - - function inst(a){ - if(a.length == 0){ - display.showPopup("auto-install-plugins", - "All installation finished."); - }else{ - var url = a.shift(); - var path = userscript.pluginDir + - userscript.directoryDelimiter + url.match(/[^/]+$/)[0]; - if(plugins.context[path] === undefined){ - userscript.installPluginFromURL(url, function(){inst(a);}); - }else{ - inst(a); - } + var urls = [ + 'https://raw.github.com/mooz/keysnail/master/plugins/yet-another-twitter-client-keysnail.ks.js', + 'https://raw.github.com/mooz/keysnail/master/plugins/site-local-keymap.ks.js', + 'https://raw.github.com/mooz/keysnail/master/plugins/hok.ks.js', + 'https://github.com/mooz/keysnail/raw/master/plugins/builtin-commands-ext.ks.js', + 'https://raw.github.com/azu/KeySnail-Plugins/master/JSReference/js-referrence.ks.js', + 'https://raw.github.com/gongo/keysnail_plugin/master/linksnail.ks.js', + 'https://raw.github.com/tkosaka/keysnail-plugin/master/nicontroller.ks.js', + 'https://raw.github.com/10sr/keysnail-plugin/master/shiitake.ks.js', + 'https://raw.github.com/10sr/keysnail-plugin/master/dig-url.ks.js', + 'https://raw.github.com/10sr/keysnail-plugin/master/instapaper.ks.js', + 'https://raw.github.com/10sr/keysnail-plugin/master/pixiv_autojump.ks.js', + 'https://raw.github.com/10sr/keysnail-plugin/master/list-current-urls.ks.js', + 'https://gist.githubusercontent.com/10sr/1976942/raw/firefox-addon-manager.ks.js', + 'https://gist.githubusercontent.com/958/1450594/raw/mstranslator.ks.js' + ]; + + function inst(a){ + if(a.length == 0){ + display.showPopup("auto-install-plugins", + "All installation finished."); + }else{ + var url = a.shift(); + var path = userscript.pluginDir + + userscript.directoryDelimiter + url.match(/[^/]+$/)[0]; + if(plugins.context[path] === undefined){ + userscript.installPluginFromURL(url, function(){inst(a);}); + }else{ + inst(a); } + } } inst(urls); }, 'Install plugins automatically if not installed yet.'); ext.add('put-aside-this-page', function (ev, arg) { - var n = getBrowser().mCurrentTab._tPos; - getBrowser().moveTabTo(getBrowser().mCurrentTab, 0); - if (n != 0) { - getBrowser().selectedTab = getBrowser().mTabs[n]; - } + var n = getBrowser().mCurrentTab._tPos; + getBrowser().moveTabTo(getBrowser().mCurrentTab, 0); + if (n != 0) { + getBrowser().selectedTab = getBrowser().mTabs[n]; + } }, 'put aside this page'); ext.add('send-escape', function (ev, arg) { - ev.target.dispatchEvent(key.stringToKeyEvent("ESC", true)); + ev.target.dispatchEvent(key.stringToKeyEvent("ESC", true)); }, 'escape'); ext.add("open-hatebu-comment", function (ev, arg) { - var url = window.content.location.href.replace(/^[^/]*\/\//, ""); + var url = window.content.location.href.replace(/^[^/]*\/\//, ""); window.content.location.href = "http://b.hatena.ne.jp/entry/" + url; }, 'hatebu'); @@ -719,118 +719,118 @@ ext.add("open-hatebu-comment", function (ev, arg) { // }, "forcus on content"); ext.add("hide-sidebar", function(){ - var sidebarBox = document.getElementById("sidebar-box"); - if (!sidebarBox.hidden) { - toggleSidebar(sidebarBox.getAttribute("sidebarcommand")); - } + var sidebarBox = document.getElementById("sidebar-box"); + if (!sidebarBox.hidden) { + toggleSidebar(sidebarBox.getAttribute("sidebarcommand")); + } }, "hide-sidebar"); ext.add("close-and-next-tab", function (ev, arg) { - var n = getBrowser().mCurrentTab._tPos; - getBrowser().removeCurrentTab(); - getBrowser().selectedTab = getBrowser().mTabs[n]; + var n = getBrowser().mCurrentTab._tPos; + getBrowser().removeCurrentTab(); + getBrowser().selectedTab = getBrowser().mTabs[n]; }, "close and focus to next tab"); ////////////////////////////////////// // ext.add("restart-firefox-add-menu", function(){ - const XUL_NS = + const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; - var cmdelm = document.createElementNS(XUL_NS, "command"); - cmdelm.setAttribute("id", "my_cmd_restartFirefoxKs"); - cmdelm.setAttribute("oncommand", "ext.exec('restart-firefox');"); - var commandset = document.getElementById("mainCommandSet"); - // menu.insertBefore(elm, menu.getElementById("menu_FileQuitItem")); - commandset.appendChild(cmdelm); - - var menuelm = document.createElementNS(XUL_NS, "menuitem"); - menuelm.setAttribute("label", "Restart Firefox"); - menuelm.setAttribute("id", "my_menu_restartFirefoxKs"); - menuelm.setAttribute("command", "my_cmd_restartFirefoxKs"); - var menu = document.getElementById("menu_FilePopup"); - // menu.insertBefore(elm, menu.getElementById("menu_FileQuitItem")); - menu.appendChild(menuelm); + var cmdelm = document.createElementNS(XUL_NS, "command"); + cmdelm.setAttribute("id", "my_cmd_restartFirefoxKs"); + cmdelm.setAttribute("oncommand", "ext.exec('restart-firefox');"); + var commandset = document.getElementById("mainCommandSet"); + // menu.insertBefore(elm, menu.getElementById("menu_FileQuitItem")); + commandset.appendChild(cmdelm); + + var menuelm = document.createElementNS(XUL_NS, "menuitem"); + menuelm.setAttribute("label", "Restart Firefox"); + menuelm.setAttribute("id", "my_menu_restartFirefoxKs"); + menuelm.setAttribute("command", "my_cmd_restartFirefoxKs"); + var menu = document.getElementById("menu_FilePopup"); + // menu.insertBefore(elm, menu.getElementById("menu_FileQuitItem")); + menu.appendChild(menuelm); }, "add restart firefox menu"); ///////////////////////////////////////// // feed url ext.add("feed-add-to-feedly", function(){ - var url = window.content.location.href; - window.content.location.href = - "http://cloud.feedly.com/#subscription%2Ffeed%2F" + - encodeURIComponent(url); + var url = window.content.location.href; + window.content.location.href = + "http://cloud.feedly.com/#subscription%2Ffeed%2F" + + encodeURIComponent(url); }, "Add current feed to feedly"); var feedUtils = (function(){ - var feedhandler = "http://cloud.feedly.com/#subscription%2Ffeed%2F%s"; - - function getFeeds(){ - const doc = content.document; - - var feeds = [[e.getAttribute("title"), e.getAttribute("href")] - for ([, e] in Iterator(doc.querySelectorAll([ - 'link[type="application/rss+xml"]', - 'link[type="application/atom+xml"]' - ])))]; - var uh = window.content.location.href.replace(/(.*?\/\/[^/]*)(\/.*)?/, - "$1"); - for (i = 0; i < feeds.length; i++) - if ( feeds[i][1].substr(0,1) == "/" ) feeds[i][1] = uh + feeds[i][1]; - // feeds.unshift([window.content.document.title, - // window.content.location.href]); - - return feeds; - }; - - ext.add("copy-feed-url", function () { - var feeds = getFeeds(); - if (! feeds.length) { - display.echoStatusBar("No feed found."); - return; - } - prompt.selector({ - message : "Select Feed", - collection : feeds, - callback : function (i) { - if (i >= 0) { - command.setClipboardText(feeds[i][1]); - } - } - }); - }, "Copy url or feed url of current page"); + var feedhandler = "http://cloud.feedly.com/#subscription%2Ffeed%2F%s"; + + function getFeeds(){ + const doc = content.document; + + var feeds = [[e.getAttribute("title"), e.getAttribute("href")] + for ([, e] in Iterator(doc.querySelectorAll([ + 'link[type="application/rss+xml"]', + 'link[type="application/atom+xml"]' + ])))]; + var uh = window.content.location.href.replace(/(.*?\/\/[^/]*)(\/.*)?/, + "$1"); + for (i = 0; i < feeds.length; i++) + if ( feeds[i][1].substr(0,1) == "/" ) feeds[i][1] = uh + feeds[i][1]; + // feeds.unshift([window.content.document.title, + // window.content.location.href]); + + return feeds; + }; + +ext.add("copy-feed-url", function () { + var feeds = getFeeds(); + if (! feeds.length) { + display.echoStatusBar("No feed found."); + return; + } + prompt.selector({ + message : "Select Feed", + collection : feeds, + callback : function (i) { + if (i >= 0) { + command.setClipboardText(feeds[i][1]); + } + } + }); +}, "Copy url or feed url of current page"); + +ext.add("open-feed", function () { + var feeds = getFeeds(); + if (! feeds.length) { + display.echoStatusBar("No feed found."); + return; + } + prompt.selector({ + message : "Select Feed", + collection : feeds, + callback : function (i) { + if (i < 0) { + return; + } - ext.add("open-feed", function () { - var feeds = getFeeds(); - if (! feeds.length) { - display.echoStatusBar("No feed found."); - return; - } - prompt.selector({ - message : "Select Feed", - collection : feeds, - callback : function (i) { - if (i < 0) { - return; - } - - var feedurl = feeds[i][1]; - if (feedhandler) { - window.openUILinkIn( - feedhandler.replace("%s", feedurl), - "tab" - ); - } else { - window.openUILinkIn(feedurl, "tab"); - } - } - }); - }, "Copy url or feed url of current page"); + var feedurl = feeds[i][1]; + if (feedhandler) { + window.openUILinkIn( + feedhandler.replace("%s", feedurl), + "tab" + ); + } else { + window.openUILinkIn(feedurl, "tab"); + } + } + }); +}, "Copy url or feed url of current page"); - return { - getFeeds: getFeeds - }; +return { + getFeeds: getFeeds +}; })(); @@ -838,129 +838,129 @@ var feedUtils = (function(){ // keysnail z menu ext.add("keysnail-setting-dialog", function(){ - KeySnail.openPreference(); + KeySnail.openPreference(); }, "keysnail setting dialog"); ext.add("keysnail-plugin-manager", function(){ - userscript.openPluginManager(); + userscript.openPluginManager(); }, "keysnail plugin manager"); ext.add("firefox-open-addon-manager", function(){ - BrowserOpenAddonsMgr(); + BrowserOpenAddonsMgr(); }, "firefox addon manager"); ext.add("keysnail-reload-init-file", function(){ - userscript.reload(); + userscript.reload(); }, "keysnail reload init file"); ext.add("keysnail-z-menu",function(){ - var list = [["keysnail-setting-dialog"], - ["keysnail-plugin-manager"], - ["firefox-open-addon-manager"], - ["keysnail-reload-init-file"], - // ["check-for-plugins-update"], - ["restart-firefox"] - ]; - prompt.selector( - { - message : "open setting dialog", - collection : list, - callback : function (i) { - ext.exec(list[i][0]); - } - }); + var list = [["keysnail-setting-dialog"], + ["keysnail-plugin-manager"], + ["firefox-open-addon-manager"], + ["keysnail-reload-init-file"], + // ["check-for-plugins-update"], + ["restart-firefox"] + ]; + prompt.selector( + { + message : "open setting dialog", + collection : list, + callback : function (i) { + ext.exec(list[i][0]); + } + }); },"open keysnail z menu"); /////////////////////////////////// // search web ext.add("query-then-engine", function () { - prompt.reader({ - message : "Search Word?:", - group : "query_word", - // completer : completer.matcher.header(share.friendsCache || []), - initialInput : content.document.getSelection() || "", - callback : function (q) { - if (q) { - prompt.selector({ - message : "search \"" + q + "\" with?", - collection : plugins.options["search-url-list"], - width : [20,80], - callback : function (i) { - getBrowser().selectedTab = - getBrowser().addTab( - plugins.options["search-url-list"][i][1]. - replace("%r",q).replace( - "%q",encodeURIComponent(q) - ) - ) - ; - } - }); - }; - } - }); + prompt.reader({ + message : "Search Word?:", + group : "query_word", + // completer : completer.matcher.header(share.friendsCache || []), + initialInput : content.document.getSelection() || "", + callback : function (q) { + if (q) { + prompt.selector({ + message : "search \"" + q + "\" with?", + collection : plugins.options["search-url-list"], + width : [20,80], + callback : function (i) { + getBrowser().selectedTab = + getBrowser().addTab( + plugins.options["search-url-list"][i][1]. + replace("%r",q).replace( + "%q",encodeURIComponent(q) + ) + ) + ; + } + }); + }; + } + }); }, "enter search word and then select engine"); ///////////////////////////////////// // closed tab list ext.add("list-closed-tabs", function () { - const fav = "chrome://mozapps/skin/places/defaultFavicon.png"; - var ss = Cc["@mozilla.org/browser/sessionstore;1"].getService( - Ci.nsISessionStore - ); - var json = Cc["@mozilla.org/dom/json;1"].createInstance(Ci.nsIJSON); - var closedTabs = [[tab.image || fav, tab.title, tab.url] - for each (tab in json.decode(ss.getClosedTabData(window))) - ]; - - if (!closedTabs.length) - return void display.echoStatusBar("No recently closed tab.", 2000); - - prompt.selector( - { - message : "select tab to undo:", - collection : closedTabs, - flags : [ICON | IGNORE, 0, 0], - callback : function (i) { if (i >= 0) window.undoCloseTab(i); } - }); + const fav = "chrome://mozapps/skin/places/defaultFavicon.png"; + var ss = Cc["@mozilla.org/browser/sessionstore;1"].getService( + Ci.nsISessionStore + ); + var json = Cc["@mozilla.org/dom/json;1"].createInstance(Ci.nsIJSON); + var closedTabs = [[tab.image || fav, tab.title, tab.url] + for each (tab in json.decode(ss.getClosedTabData(window))) + ]; + + if (!closedTabs.length) + return void display.echoStatusBar("No recently closed tab.", 2000); + + prompt.selector( + { + message : "select tab to undo:", + collection : closedTabs, + flags : [ICON | IGNORE, 0, 0], + callback : function (i) { if (i >= 0) window.undoCloseTab(i); } + }); }, "List closed tabs"); /////////////////////////////// // http://malblue.tumblr.com/post/349001250/tips-japanese-keysnail-github ext.add("list-tab-history", function () { - const fav = "chrome://mozapps/skin/places/defaultFavicon.png"; - var tabHistory = []; - var sessionHistory = getBrowser().webNavigation.sessionHistory; - if (sessionHistory.count < 1) - return void display.echoStatusBar("Tab history not exist", 2000); - var curIdx = sessionHistory.index; - for (var i = 0; i < sessionHistory.count; i++) { - var entry = sessionHistory.getEntryAtIndex(i, false); - if (!entry) - continue; - try { - var iconURL = Cc["@mozilla.org/browser/favicon-service;1"] - .getService(Ci.nsIFaviconService) - .getFaviconForPage(entry.URI).spec; - } catch (ex) {} - tabHistory.push([iconURL || fav, entry.title, entry.URI.spec, i]); - } - for (var thIdx = 0; thIdx < tabHistory.length; thIdx++) { - if (tabHistory[thIdx][3] == curIdx) break; - } - - prompt.selector( - { - message : "select history in tab", - collection : tabHistory, - flags : [ICON | IGNORE, 0, 0, IGNORE | HIDDEN], - header : ["Title", "URL"], - initialIndex : thIdx, - callback : function(i) { - if (i >= 0) - getBrowser().webNavigation.gotoIndex(tabHistory[i][3]); - } - }); + const fav = "chrome://mozapps/skin/places/defaultFavicon.png"; + var tabHistory = []; + var sessionHistory = getBrowser().webNavigation.sessionHistory; + if (sessionHistory.count < 1) + return void display.echoStatusBar("Tab history not exist", 2000); + var curIdx = sessionHistory.index; + for (var i = 0; i < sessionHistory.count; i++) { + var entry = sessionHistory.getEntryAtIndex(i, false); + if (!entry) + continue; + try { + var iconURL = Cc["@mozilla.org/browser/favicon-service;1"] + .getService(Ci.nsIFaviconService) + .getFaviconForPage(entry.URI).spec; + } catch (ex) {} + tabHistory.push([iconURL || fav, entry.title, entry.URI.spec, i]); + } + for (var thIdx = 0; thIdx < tabHistory.length; thIdx++) { + if (tabHistory[thIdx][3] == curIdx) break; + } + + prompt.selector( + { + message : "select history in tab", + collection : tabHistory, + flags : [ICON | IGNORE, 0, 0, IGNORE | HIDDEN], + header : ["Title", "URL"], + initialIndex : thIdx, + callback : function(i) { + if (i >= 0) + getBrowser().webNavigation.gotoIndex(tabHistory[i][3]); + } + }); }, 'List tab history'); //}}%PRESERVE% @@ -982,303 +982,303 @@ key.suspendKey = "Not defined"; // ================================= Hooks ================================= // hook.setHook('KeyBoardQuit', function (aEvent) { - // ext.exec("hide-sidebar"); - let(elem = document.commandDispatcher.focusedElement) elem && elem.blur(); - getBrowser().focus(); - content.focus(); - command.closeFindBar(); - if (util.isCaretEnabled()) { - command.resetMark(aEvent); - } else { - goDoCommand("cmd_selectNone"); - } - key.generateKey(aEvent.originalTarget, KeyEvent.DOM_VK_ESCAPE, true); + // ext.exec("hide-sidebar"); + let(elem = document.commandDispatcher.focusedElement) elem && elem.blur(); + getBrowser().focus(); + content.focus(); + command.closeFindBar(); + if (util.isCaretEnabled()) { + command.resetMark(aEvent); + } else { + goDoCommand("cmd_selectNone"); + } + key.generateKey(aEvent.originalTarget, KeyEvent.DOM_VK_ESCAPE, true); }); hook.setHook('Unload', function () { - util.getBrowserWindows().some(function (win) { - if (win === window) { - return false; - } - const ks = win.KeySnail; - share.pluginUpdater = ks.getPluginUpdater( - share.pluginUpdater.pluginsWithUpdate); - ks.setUpPluginUpdaterDelegator(); - return true; - }); + util.getBrowserWindows().some(function (win) { + if (win === window) { + return false; + } + const ks = win.KeySnail; + share.pluginUpdater = ks.getPluginUpdater( + share.pluginUpdater.pluginsWithUpdate); + ks.setUpPluginUpdaterDelegator(); + return true; + }); }); hook.setHook('LocationChange', function (aNsURI) { - echoTabInfo.echo(); + echoTabInfo.echo(); }); // ============================= Key bindings ============================== // key.setGlobalKey('C-', function () { - var browser = getBrowser(); - if (browser.mCurrentTab.previousSibling) { - browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos - 1); - } else { - browser.moveTabTo(browser.mCurrentTab, - browser.mTabContainer.childNodes.length - 1); - } + var browser = getBrowser(); + if (browser.mCurrentTab.previousSibling) { + browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos - 1); + } else { + browser.moveTabTo(browser.mCurrentTab, + browser.mTabContainer.childNodes.length - 1); + } }, '選択中のタブを右へ'); key.setGlobalKey('C-', function () { - var browser = getBrowser(); - if (browser.mCurrentTab.nextSibling) { - browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos + 1); - } else { - browser.moveTabTo(browser.mCurrentTab, 0); - } + var browser = getBrowser(); + if (browser.mCurrentTab.nextSibling) { + browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos + 1); + } else { + browser.moveTabTo(browser.mCurrentTab, 0); + } }, '選択中のタブを左へ'); key.setGlobalKey('', function (ev, arg) { - let (elem = document.commandDispatcher.focusedElement) elem && elem.blur(); - getBrowser().focus(); - content.focus(); + let (elem = document.commandDispatcher.focusedElement) elem && elem.blur(); + getBrowser().focus(); + content.focus(); }, 'コンテンツへフォーカス', true); key.setGlobalKey('', function (ev, arg) { - ext.exec("strong-fullscreen", arg, ev); + ext.exec("strong-fullscreen", arg, ev); }, 'go fullscreen with hiding toolbar and tabbar', true); key.setGlobalKey('', function (ev) { - getBrowser().mTabContainer.advanceSelectedTab(1, true); + getBrowser().mTabContainer.advanceSelectedTab(1, true); }, 'ひとつ右のタブへ'); key.setGlobalKey('', function (ev) { - getBrowser().mTabContainer.advanceSelectedTab(-1, true); + getBrowser().mTabContainer.advanceSelectedTab(-1, true); }, 'ひとつ左のタブへ'); key.setGlobalKey('', function (ev) { - let browser = getBrowser(); - if (browser.mCurrentTab.nextSibling) { - browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos + 1); - } else { - browser.moveTabTo(browser.mCurrentTab, 0); - } + let browser = getBrowser(); + if (browser.mCurrentTab.nextSibling) { + browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos + 1); + } else { + browser.moveTabTo(browser.mCurrentTab, 0); + } }, '選択中のタブを右へ'); key.setGlobalKey('', function (ev) { - let browser = getBrowser(); - if (browser.mCurrentTab.previousSibling) { - browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos - 1); - } else { - browser.moveTabTo(browser.mCurrentTab, browser.mTabContainer.childNodes.length - 1); - } + let browser = getBrowser(); + if (browser.mCurrentTab.previousSibling) { + browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos - 1); + } else { + browser.moveTabTo(browser.mCurrentTab, browser.mTabContainer.childNodes.length - 1); + } }, '選択中のタブを左へ'); key.setViewKey('0', function (ev) { - BrowserCloseTabOrWindow(); + BrowserCloseTabOrWindow(); }, 'タブ / ウィンドウを閉じる'); key.setViewKey('l', function (ev) { - getBrowser().mTabContainer.advanceSelectedTab(1, true); + getBrowser().mTabContainer.advanceSelectedTab(1, true); }, 'ひとつ右のタブへ'); key.setViewKey('h', function (ev) { - getBrowser().mTabContainer.advanceSelectedTab(-1, true); + getBrowser().mTabContainer.advanceSelectedTab(-1, true); }, 'ひとつ左のタブへ'); key.setViewKey('o', function (ev, arg) { - ext.exec("hok-start-foreground-mode", arg, ev); + ext.exec("hok-start-foreground-mode", arg, ev); }, 'Start Hit a Hint foreground mode', true); key.setViewKey('c', function (ev) { - command.interpreter(); + command.interpreter(); }, 'JavaScript のコードを評価'); key.setViewKey('D', function (ev, arg) { - ext.exec("dig-url", arg, ev); + ext.exec("dig-url", arg, ev); }, 'dig url with selector', true); key.setViewKey('x', function (aEvent, aArg) { - ext.select(aArg, aEvent); + ext.select(aArg, aEvent); }, 'エクステ一覧'); key.setViewKey(['t', 'w'], function (ev, arg) { - ext.exec("twitter-client-tweet", arg, ev); + ext.exec("twitter-client-tweet", arg, ev); }, 'つぶやく', true); key.setViewKey(['t', 'p'], function (ev, arg) { - ext.exec("twitter-client-tweet-this-page", arg, ev); + ext.exec("twitter-client-tweet-this-page", arg, ev); }, 'このページのタイトルと URL を使ってつぶやく', true); key.setViewKey([['u'], ['S-SPC']], function (ev) { - goDoCommand("cmd_scrollPageUp"); + goDoCommand("cmd_scrollPageUp"); }, '一画面分スクロールアップ'); key.setViewKey('g', function () { - goDoCommand("cmd_scrollTop"); + goDoCommand("cmd_scrollTop"); }, 'ページ先頭へ移動'); key.setViewKey('G', function () { - goDoCommand("cmd_scrollBottom"); + goDoCommand("cmd_scrollBottom"); }, 'ページ末尾へ移動'); key.setViewKey('r', function (aEvent) { - BrowserReload(); + BrowserReload(); }, '再読み込み'); key.setViewKey('z', function (ev, arg) { - ext.exec("keysnail-z-menu", arg, ev); + ext.exec("keysnail-z-menu", arg, ev); }, 'open keysnail setting menu', true); key.setViewKey('e', function () { - command.focusElement(command.elementsRetrieverTextarea, 0); + command.focusElement(command.elementsRetrieverTextarea, 0); }, '最初のインプットエリアへフォーカス', true); key.setViewKey('S', function (ev, arg) { - if (window.loadURI) { - loadURI("javascript:var%20b=document.body;var%20GR________bookmarklet_domain='https://www.google.com';if(b&&!document.xmlVersion){void(z=document.createElement('script'));void(z.src='https://www.google.com/reader/ui/link-bookmarklet.js');void(b.appendChild(z));}else{}"); - } + if (window.loadURI) { + loadURI("javascript:var%20b=document.body;var%20GR________bookmarklet_domain='https://www.google.com';if(b&&!document.xmlVersion){void(z=document.createElement('script'));void(z.src='https://www.google.com/reader/ui/link-bookmarklet.js');void(b.appendChild(z));}else{}"); + } }, 'google reader share'); key.setViewKey('!', function (ev, arg) { - shell.input(); + shell.input(); }, 'Command system'); key.setViewKey('R', function () { - BrowserReloadSkipCache(); + BrowserReloadSkipCache(); }, '更新(キャッシュを無視)'); key.setViewKey('', function () { - BrowserBack(); + BrowserBack(); }, '戻る'); key.setViewKey('S-', function () { - BrowserForward(); + BrowserForward(); }, '進む'); key.setViewKey('q', function (ev, arg) { - ext.exec("query-then-engine", arg, ev); + ext.exec("query-then-engine", arg, ev); }, 'enter search word and then select engine', true); key.setViewKey('/', function () { - command.iSearchForward(); + command.iSearchForward(); }, 'インクリメンタル検索', true); key.setViewKey('?', function (ev) { - command.iSearchForwardKs(ev); + command.iSearchForwardKs(ev); }, 'Emacs ライクなインクリメンタル検索', true); key.setViewKey('a', function (ev, arg) { - allTabs.open(); + allTabs.open(); }, 'alltabs.open'); key.setViewKey([['d'], ['SPC']], function (ev) { - goDoCommand("cmd_scrollPageDown"); + goDoCommand("cmd_scrollPageDown"); }, '一画面スクロールダウン'); key.setViewKey(':', function (ev, arg) { - return !document.getElementById("keysnail-prompt").hidden && - document.getElementById("keysnail-prompt-textbox").focus(); + return !document.getElementById("keysnail-prompt").hidden && + document.getElementById("keysnail-prompt-textbox").focus(); }, 'KeySnail のプロンプトへフォーカス', true); key.setViewKey('B', function (ev) { - var browser = getBrowser(); - if (browser.mCurrentTab.previousSibling) { - browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos - 1); - } else { - browser.moveTabTo(browser.mCurrentTab, - browser.mTabContainer.childNodes.length - 1); - } + var browser = getBrowser(); + if (browser.mCurrentTab.previousSibling) { + browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos - 1); + } else { + browser.moveTabTo(browser.mCurrentTab, + browser.mTabContainer.childNodes.length - 1); + } }, '選択中のタブを左へ'); key.setViewKey('C', function (ev, arg) { - ext.exec("linksnail", arg, ev); + ext.exec("linksnail", arg, ev); }, 'LinkSnail', true); key.setViewKey('C-', function (ev, arg) { - ext.exec("list-tab-history", arg, ev); + ext.exec("list-tab-history", arg, ev); }, 'List tab history', true); key.setViewKey('I', function (ev, arg) { - ext.exec("instapaper-post-page-with-comment", arg, ev); + ext.exec("instapaper-post-page-with-comment", arg, ev); }, 'post page and comment', true); key.setViewKey('T', function (ev, arg) { - ext.exec("mstranslator-open-prompt", arg, ev); + ext.exec("mstranslator-open-prompt", arg, ev); }, 'MSTranslator - Open prompt', true); key.setViewKey('f', function (ev, arg) { - ext.exec('strong-fullscreen', arg, ev); + ext.exec('strong-fullscreen', arg, ev); }, 'go fullscreen with hiding toolbar and tabbar', true); key.setViewKey('F', function (ev) { - var browser = getBrowser(); - if (browser.mCurrentTab.nextSibling) { - browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos + 1); - } else { - browser.moveTabTo(browser.mCurrentTab, 0); - } + var browser = getBrowser(); + if (browser.mCurrentTab.nextSibling) { + browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos + 1); + } else { + browser.moveTabTo(browser.mCurrentTab, 0); + } }, '選択中のタブを右へ'); key.setViewKey('U', function (ev, arg) { - ext.exec("list-closed-tabs", arg, ev); + ext.exec("list-closed-tabs", arg, ev); }, 'List closed tabs', true); key.setViewKey('j', function (ev) { - key.generateKey(ev.originalTarget, KeyEvent.DOM_VK_DOWN, true); + key.generateKey(ev.originalTarget, KeyEvent.DOM_VK_DOWN, true); }, '一行スクロールダウン'); key.setViewKey('k', function (ev) { - key.generateKey(ev.originalTarget, KeyEvent.DOM_VK_UP, true); + key.generateKey(ev.originalTarget, KeyEvent.DOM_VK_UP, true); }, '一行スクロールアップ'); key.setEditKey('C-', function (ev) { - command.walkInputElement(command.elementsRetrieverTextarea, true, true); + command.walkInputElement(command.elementsRetrieverTextarea, true, true); }, '次のテキストエリアへフォーカス'); key.setEditKey('C-a', function (ev) { - command.beginLine(ev); + command.beginLine(ev); }, '行頭へ移動'); key.setEditKey('C-e', function (ev) { - command.endLine(ev); + command.endLine(ev); }, '行末へ'); key.setEditKey('C-d', function (ev) { - goDoCommand("cmd_deleteCharForward"); + goDoCommand("cmd_deleteCharForward"); }, '次の一文字削除'); key.setEditKey('C-b', function (ev) { - command.previousChar(ev); + command.previousChar(ev); }, '一文字左へ移動'); key.setEditKey('C-f', function (ev) { - command.nextChar(ev); + command.nextChar(ev); }, '一文字右へ移動'); key.setEditKey('C-h', function (ev) { - goDoCommand("cmd_deleteCharBackward"); + goDoCommand("cmd_deleteCharBackward"); }, '前の一文字を削除'); key.setEditKey('C-k', function (ev) { - command.killLine(ev); + command.killLine(ev); }, 'カーソルから先を一行カット (Kill line)'); key.setEditKey('C-l', function (ev) { - command.recenter(ev); + command.recenter(ev); }, 'カーソル位置が画面の中央へ来るようスクロール', true); key.setEditKey('C-n', function (ev) { - command.nextLine(ev); + command.nextLine(ev); }, '一行下へ'); key.setEditKey('C-p', function (ev) { - command.previousLine(ev); + command.previousLine(ev); }, '一行上へ'); key.setEditKey('C-o', function (ev) { - command.openLine(ev); + command.openLine(ev); }, '行を開く (Open line)'); key.setViewKey('p', function (ev, arg) { - ext.exec('pocket-add-current', arg, ev); + ext.exec('pocket-add-current', arg, ev); }, 'Add current page', true); key.setViewKey('P', function (ev, arg) { - ext.exec('pocket-open-latest', arg, ev); + ext.exec('pocket-open-latest', arg, ev); }, 'Open last saved page', true);