You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1048 lines
36 KiB

  1. // ========================== KeySnail Init File =========================== //
  2. // この領域は, GUI により設定ファイルを生成した際にも引き継がれます
  3. // 特殊キー, キーバインド定義, フック, ブラックリスト以外のコードは, この中に書くようにして下さい
  4. // ========================================================================= //
  5. //{{%PRESERVE%
  6. // prompt.rows = 12;
  7. // prompt.useMigemo = false;
  8. // prompt.migemoMinWordLength = 2;
  9. // prompt.displayDelayTime = 300;
  10. // command.kill.killRingMax = 15;
  11. // command.kill.textLengthMax = 8192;
  12. // Original is at https://gist.github.com/Griever/62715
  13. ext.add("open-bookmarks-in-new-tab", function(){
  14. // this makes all clicks open in new tab.
  15. // return;
  16. // test if firefox 12
  17. if (12 > parseFloat(Cc['@mozilla.org/xre/app-info;1'].
  18. getService(Ci.nsIXULAppInfo).version)) {
  19. return;
  20. }
  21. // I cannot fully understand what happen but keysnail emit error
  22. // *after* initialization of firefox finished successfully and I assured
  23. // that new tabs open as I expect when clicking bookmarks, for example,
  24. // when I try to tweet using the twitter keysnail plugin, with error
  25. // message saying "whereToOpenLink is undefined.".
  26. // if no modifier key pressed open in new tab.
  27. try {
  28. var whereToOpenLink_org = new String(window.whereToOpenLink.toString());
  29. window.whereToOpenLink = eval(
  30. "(" +
  31. whereToOpenLink_org.replace(
  32. '{',
  33. '{ if(!e || ' +
  34. '(!e.ctrlKey && !e.shiftKey && !e.metaKey && ' +
  35. '!(e.altKKey && !ignoreAlt))) ' +
  36. 'return "tab";'
  37. ) +
  38. ")"
  39. );
  40. } catch (e if e instanceof TypeError) {
  41. return;
  42. }
  43. // This is useless because this makes reload open new tab.
  44. // window.whereToOpenLink = function(e, ib, ia){ return "tab"; };
  45. }, "open in new tab");
  46. // ext.exec("open-bookmarks-in-new-tab");
  47. //////////////////////////////////////
  48. //// sitelocalkeymap
  49. var local = {};
  50. plugins.options["site_local_keymap.local_keymap"] = local;
  51. function fake(k, i) function(){ key.feed(k, i); };
  52. function pass(k, i) [k, fake(k, i)];
  53. function ignore(k, i) [k, null];
  54. // ext.add("ext-name", function () {}, "ext description");
  55. // style.register("");
  56. // local["^http://"] = [['a', function(ev, arg){}],];
  57. ///////////////////////////////////////////
  58. //// firefox
  59. // style.register("#bookmarksPanel > hbox,#history-panel > hbox {" +
  60. // "display: none !important;}" +
  61. // " //#urlbar-container{max-width: 500px !important;}");
  62. // style.register( //not work
  63. // <><![CDATA[
  64. // input,textarea {
  65. // font-family: monospace !important;
  66. // }
  67. // ]]></>.toString()
  68. // );
  69. style.register(
  70. '@-moz-document url-prefix(\"http://www.tumblr.com/\") { #pagination {' +
  71. 'position: fixed;' +
  72. 'bottom: 50px;' +
  73. 'right: 100px;' +
  74. 'padding-right: 0px !important' +
  75. '} }' , style.XHTML);
  76. ///////////////////////////////////
  77. //search engine
  78. plugins.options["search-url-list"] = [
  79. ["bing","http://bing.com/search?q=%q"],
  80. ["yatwitter search","http://yats-data.com/yats/search?query=%q"],
  81. ["twitter search","http://twitter.com/search?q=%q&lang=all"],
  82. ["tospy", "http://topsy.com/s?allow_lang=ja&q=%q"],
  83. ["2ch","http://2ch-ranking.net/search.php?q=%q&imp=and&order=time"],
  84. ["I\'m feelig lucky!","http://www.google.co.jp/search?q=%q&btnI=kudos"],
  85. ["uncyclopedia","http://ja.uncyclopedia.info/wiki/%q"],
  86. ["wikipedia","http://ja.wikipedia.org/wiki/%q"],
  87. ["nicovideo.jp","http://www.nicovideo.jp/search/%q"],
  88. ["alc","http://eow.alc.co.jp/%q/UTF-8/"],
  89. ["google map",
  90. "http://maps.google.co.jp/maps?hl=ja&q=%q&um=1&ie=UTF-8&sa=N&tab=wl"],
  91. ["weblio","http://www.weblio.jp/content_find?query=%q"],
  92. ["shoutcast","http://www.shoutcast.com/Internet-Radio/%q"],
  93. ["delicious 10sr",
  94. "http://delicious.com/10sr?addtag=%q&setcount=50&opennew=1"],
  95. ["open raw","%r"]
  96. ];
  97. plugins.options["my-keysnail-bookmarks"] = [
  98. "twitter.com"
  99. ];
  100. // sitelocal keymap
  101. //////////////////////////////////////////
  102. // 2ch chaika
  103. // change chaika port every time firefox starts
  104. util.setIntPref("extensions.chaika.server_port.firefox",
  105. 8800 + Math.floor(Math.random() * 30));
  106. local["^http://127.0.0.1:88"] = [
  107. ['k', function(ev, arg){
  108. curl = window.content.location.href;
  109. kurl = curl.replace(/http:.*thread\/(.*\/).*/, "chaika://post/$1");
  110. window.content.location.href = kurl;
  111. }
  112. ]
  113. ];
  114. local["^http://w2.p2.2ch.net/p2/read.php"] = [
  115. ['k', function(ev, arg){
  116. var url = window.content.location.href;
  117. var pt = /host=(.*?)&bbs=(.*?)&key=(.*?)&ls=/ ;
  118. var result = url.match(pt);
  119. var k = format("chaika://post/http://%s/test/read.cgi/%s/%s/",
  120. result[1], result[2], result[3]);
  121. window.content.location.href = k;
  122. }
  123. ]
  124. ];
  125. /////////////////////////////////////////
  126. // feedly
  127. local["^http://(www|cloud)\.feedly\.com/"] = [
  128. ['d', null],
  129. ['j', null],
  130. ['k', null],
  131. ['n', null],
  132. ['p', null],
  133. ['o', null],
  134. ['b', null],
  135. ['S', null],
  136. ['s', null],
  137. ['?', null],
  138. ['r', null],
  139. ['g', null],
  140. // ['x', function(ev, arg){
  141. // ev.target.dispatchEvent(key.stringToKeyEvent("g", true));
  142. // }],
  143. ['l', function(ev, arg){
  144. var host = window.content.location.host;
  145. if (host === "cloud.feedly.com") {
  146. window.content.location.href = "http://" + host + "/#latest";
  147. } else if (host === "www.feedly.com") {
  148. window.content.location.href = "http://" + host + "/home#latest";
  149. }
  150. }],
  151. [['t', 'p'], function(ev, arg){
  152. ev.target.dispatchEvent(key.stringToKeyEvent("t", true));
  153. }],
  154. [['t', 'w'], function(ev, arg){
  155. ext.exec("twitter-client-tweet", arg, ev);
  156. }]
  157. ];
  158. /////////////////////////////////////////
  159. //nicovideo
  160. local["http://(www|tw|es|de|)\.nicovideo\.jp\/(watch|playlist)/*"] = [
  161. ["i", function(ev, arg){ ext.exec("nicoinfo", arg); }],
  162. ["p", function(ev, arg){ ext.exec("nicopause", arg); }],
  163. // ["o", function(ev, arg){ ext.exec("nicommentvisible", arg); }],
  164. ["m", function(ev, arg){ ext.exec("nicomute", arg); }],
  165. [".", function(ev, arg){ ext.exec("nicovolumeIncrement", arg); }],
  166. [",", function(ev, arg){ ext.exec("nicovolumeDecrement", arg); }],
  167. ['f', function(ev, arg){
  168. curl = window.content.location.href;
  169. kurl = curl.replace(/nicovideo.jp/, "nicovideofire.jp");
  170. window.content.location.href = kurl;
  171. }
  172. ]
  173. ];
  174. /////////////////////////////////////////
  175. // tumblr/dashboard
  176. local["^http://www.tumblr.com/dashboard"] = [
  177. // ["C-<left>", function(ev, arg){
  178. // gBrowser.mTabContainer.advanceSelectedTab(-1, true);
  179. // }],
  180. // ["C-<right>", function(ev, arg){
  181. // gBrowser.mTabContainer.advanceSelectedTab(1, true);
  182. // }],
  183. ["<left>", function(ev, arg){
  184. window.content.location.href = "http://www.tumblr.com/dashboard";
  185. }],
  186. ["<right>", null],
  187. ["J", function(ev, arg){
  188. if (window.loadURI) {
  189. 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<b)?'http://www.tumblr.com/dashboard':'http://www.tumblr.com/dashboard/2/'+i+'00000';window.content.location.href=u;}())");
  190. }
  191. }]
  192. ];
  193. ///////////////////////////////////////////
  194. // plugin option
  195. plugins.options["builtin_commands_ext.ext_list"] = [
  196. "focus-to-prompt",
  197. "open-url-from-clipboard",
  198. "restart-firefox"
  199. ];
  200. plugins.options["instapaper.close_after_post"] = true;
  201. plugins.options["instapaper.initial_comment_function"] = function(){
  202. var now = new Date();
  203. return "[" + now.toString() + "]";
  204. };
  205. //////////////////////////////////////////
  206. // yatc
  207. style.register("#keysnail-twitter-client-container{ display:none !important; }");
  208. plugins.options["twitter_client.popup_new_statuses"] = false;
  209. plugins.options["twitter_client.automatically_begin"] = false;
  210. plugins.options["twitter_client.automatically_begin_list"] = false;
  211. plugins.options["twitter_client.timeline_count_beginning"] = 0;
  212. plugins.options["twitter_client.timeline_count_every_updates"] = 0;
  213. plugins.options["twitter_client.tweet_keymap"] = {
  214. "C-RET" : "prompt-decide",
  215. "RET" : ""
  216. };
  217. plugins.options["twitter_client.jmp_id"] = "10sr";
  218. plugins.options["twitter_client.jmp_key"] =
  219. "R_c51f889a77cb4b4e993ed868f65083f5";
  220. plugins.options["twitter_client.use_jmp"] = true;
  221. ////////////////////////////////////////////
  222. // my ext
  223. ext.add("open-remote-init-file", function(ev, arg){
  224. const URL = "https://raw.github.com/10sr/dotfiles/master/_keysnail.js";
  225. window.openUILinkIn(URL, "tab");
  226. }, "Open remote initialization file");
  227. (function(){
  228. function getOrganizer(){
  229. // [How to call for Firefox bookmark dialog? - Stack Overflow]
  230. // (http://stackoverflow.com/questions/9158187/how-to-call-for-firefox-bookmark-dialog)
  231. Components.utils.import("resource://gre/modules/Services.jsm");
  232. var organizer = Services.wm.getMostRecentWindow("Places:Organizer");
  233. if (!organizer) {
  234. // No currently open places window,
  235. // so open one with the specified mode.
  236. openDialog("chrome://browser/content/places/places.xul",
  237. "",
  238. "chrome,toolbar=yes,dialog=no,resizable",
  239. "AllBookmarks");
  240. return null;
  241. } else {
  242. return organizer;
  243. }
  244. }
  245. ext.add("export-bookmarks", function(ev, arg){
  246. var organizer = getOrganizer();
  247. if (organizer) {
  248. organizer.PlacesOrganizer.exportBookmarks();
  249. }
  250. }, "export bookmarks");
  251. ext.add("import-bookmarks", function(ev, arg){
  252. var organizer = getOrganizer();
  253. if (organizer) {
  254. organizer.PlacesOrganizer.importBookmarks();
  255. }
  256. }, "import bookmarks");
  257. })();
  258. ext.add("my-index-html", function(ev, arg){
  259. homepath = util.getEnv("HOME");
  260. file = ".index.html";
  261. if (homepath) {
  262. path = "file://" + homepath + "/" + file;
  263. window.openUILinkIn(path, "tab");
  264. }
  265. }, "open my index.html");
  266. ext.add("echo-tab-info", function(){
  267. var all = gBrowser.tabs.length;
  268. var ix = gBrowser.mCurrentTab._tPos;
  269. var title = window.document.title;
  270. var url = window.content.location.href;
  271. display.echoStatusBar((ix + 1).toString() + " / " +
  272. all.toString() + " : " +
  273. title + " <" +
  274. url + ">");
  275. }, "echo tab info");
  276. ext.add("strong-fullscreen", function(){
  277. var elemids = [
  278. "navigator-toolbox"
  279. ];
  280. BrowserFullScreen();
  281. var isfullscreen = window.fullScreen;
  282. for(var i = 0; i < elemids.length; i++){
  283. var elem = document.getElementById(elemids[i]);
  284. if(elem){
  285. if(isfullscreen){
  286. elem.style.display = "none";
  287. }else{
  288. elem.style.display = null;
  289. }
  290. }
  291. }
  292. var tabs = document.getElementById("verticaltabs-box");
  293. if(tabs){
  294. var pref_key = "extensions.verticaltabs.width";
  295. var pref_key_bak = pref_key + "_bak";
  296. if(isfullscreen){
  297. var width_orig = util.getIntPref(pref_key);
  298. util.setIntPref(pref_key_bak, width_orig);
  299. util.setIntPref(pref_key, 0);
  300. tabs.setAttribute("width", "0");
  301. }else if(parseInt(tabs.getAttribute("width") || "") === 0){
  302. var width_bak = util.getIntPref(pref_key_bak);
  303. util.setIntPref(pref_key, width_bak);
  304. tabs.setAttribute("width", width_bak.toString());
  305. }
  306. }
  307. }, "go fullscreen with hiding toolbar and tabbar");
  308. ext.add("bookmark-delicious", function(){
  309. f= 'http://www.delicious.com/save?url=' +
  310. encodeURIComponent(window.content.location.href) +
  311. '&title=' + encodeURIComponent(document.title) +
  312. '&notes=' + encodeURIComponent(
  313. '' + (window.getSelection ?
  314. window.getSelection() : (
  315. document.getSelection ?
  316. document.getSelection() :
  317. document.selection.createRange().text))) + '&v=6&';
  318. a = function(){
  319. if(! window.open(
  320. f + 'noui=1&jump=doclose',
  321. 'deliciousuiv6',
  322. 'location=1,links=0,scrollbars=0,toolbar=0,width=710,height=660')){
  323. location.href = f + 'jump=yes';
  324. }
  325. };
  326. if(/Firefox/.test(navigator.userAgent)){
  327. setTimeout(a,0);
  328. }else{
  329. a();
  330. }
  331. }, "bookmark delicious");
  332. ext.add('view-page-source', function(){
  333. window.content.location.href = "view-source:" +
  334. window.content.location.href;
  335. }, 'view page source');
  336. ext.add('my-setpref', function(){
  337. util.setPrefs(
  338. {
  339. "browser.bookmarks.max_backups":0,
  340. "browser.cache.memory.capacity":16384,
  341. "browser.download.manager.closeWhenDone":true,
  342. "browser.download.useDownloadDir":false,
  343. "browser.fullscreen.autohide":false,
  344. "browser.search.openintab":true,
  345. "browser.sessionhistory.max_total_viewers":8,
  346. "browser.sessionstore.restore_on_demand":true,
  347. "browser.tabs.closeWindowWithLastTab":false,
  348. "browser.tabs.loadDivertedInBackground": true,
  349. "browser.urlbar.autocomplete.enabled":false,
  350. "browser.urlbar.trimURLs":false,
  351. "dom.disable_window_open_feature.location": false,
  352. "dom.max_script_run_time": 30,
  353. "extensions.chaika.bbsmenu.open_new_tab":true,
  354. "extensions.chaika.bbsmenu.open_single_click":false,
  355. "extensions.chaika.board.open_new_tab":true,
  356. "extensions.chaika.board.open_single_click":false,
  357. "extensions.foxage2ch.openThreadInTab":true,
  358. "extensions.saveimageinfolder.general-duplicatefilenamevalue":1,
  359. "extensions.saveimageinfolder.general-fileprefixvalue":
  360. "%yyyy%%MM%%dd%-%hh%%mm%%ss%_",
  361. "extensions.saveimageinfolder.usecache":true,
  362. "extensions.tabutils.openTabNext":1,
  363. "extensions.tabutils.styles.current":
  364. "{\"bold\":true,\"italic\":false,\"underline\":true,\"strikethrough\":false,\"color\":true,\"colorCode\":\"#000000\",\"bgColor\":false,\"bgColorCode\":\"#000000\",\"outline\":false,\"outlineColorCode\":\"#000000\"}",
  365. "extensions.tabutils.styles.unread":
  366. "{\"bold\":false,\"italic\":false,\"underline\":false,\"strikethrough\":false,\"color\":true,\"colorCode\":\"#CC0000\",\"bgColor\":false,\"bgColorCode\":\"undefined\",\"outline\":false,\"outlineColorCode\":\"undefined\"}",
  367. "extensions.yass.edgetype":0,
  368. "extensions.yass.selectedpreset":"red",
  369. "font.default.x-western":"sans-serif",
  370. "gecko.handlerService.schemes.mailto.1.name":"Gmail",
  371. "general.warnOnAboutConfig":false,
  372. "keyword.URL":"http://www.bing.com/search?q=",
  373. "network.dns.disableIPv6":true,
  374. "refcontrol.actions":
  375. "@DEFAULT=@FORGE www.heartrails.com=@NORMAL www.pixiv.net=@NORMAL",
  376. "scrapbook.tabs.open":true
  377. }
  378. );
  379. if(/^Linux/.test(navigator.platform)){
  380. util.setPrefs(
  381. {
  382. "browser.cache.disk.parent_directory":"/tmp",
  383. "browser.cache.disk.capacity":524288
  384. }
  385. );
  386. }
  387. display.showPopup("Keysnail", "My prefs done.");
  388. }, 'my setpref');
  389. ext.add('auto-install-plugins', function(ev, arg){
  390. var urls = [
  391. 'https://raw.github.com/mooz/keysnail/master/plugins/yet-another-twitter-client-keysnail.ks.js',
  392. 'https://raw.github.com/mooz/keysnail/master/plugins/site-local-keymap.ks.js',
  393. 'https://raw.github.com/mooz/keysnail/master/plugins/hok.ks.js',
  394. 'https://github.com/mooz/keysnail/raw/master/plugins/builtin-commands-ext.ks.js',
  395. 'https://raw.github.com/azu/KeySnail-Plugins/master/JSReference/js-referrence.ks.js',
  396. 'https://raw.github.com/gongo/keysnail_plugin/master/linksnail.ks.js',
  397. 'https://raw.github.com/tkosaka/keysnail-plugin/master/nicontroller.ks.js',
  398. 'https://raw.github.com/10sr/keysnail-plugin/master/shiitake.ks.js',
  399. 'https://raw.github.com/10sr/keysnail-plugin/master/dig-url.ks.js',
  400. 'https://raw.github.com/10sr/keysnail-plugin/master/instapaper.ks.js',
  401. 'https://raw.github.com/10sr/keysnail-plugin/master/pixiv_autojump.ks.js',
  402. 'https://raw.github.com/10sr/keysnail-plugin/master/list-current-urls.ks.js',
  403. 'https://raw.github.com/gist/1976942/firefox-addon-manager.ks.js',
  404. 'https://raw.github.com/gist/1450594/mstranslator.ks.js'
  405. ];
  406. function inst(a){
  407. if(a.length == 0){
  408. display.showPopup("auto-install-plugins",
  409. "All installation finished.");
  410. }else{
  411. var url = a.shift();
  412. var path = userscript.pluginDir +
  413. userscript.directoryDelimiter + url.match(/[^/]+$/)[0];
  414. if(plugins.context[path] === undefined){
  415. userscript.installPluginFromURL(url, function(){inst(a);});
  416. }else{
  417. inst(a);
  418. }
  419. }
  420. }
  421. inst(urls);
  422. }, 'Install plugins automatically if not installed yet.');
  423. ext.add('put-aside-this-page', function (ev, arg) {
  424. var n = gBrowser.mCurrentTab._tPos;
  425. gBrowser.moveTabTo(gBrowser.mCurrentTab, 0);
  426. if (n != 0) {
  427. gBrowser.selectedTab = gBrowser.mTabs[n];
  428. }
  429. }, 'put aside this page');
  430. ext.add('send-escape', function (ev, arg) {
  431. ev.target.dispatchEvent(key.stringToKeyEvent("ESC", true));
  432. }, 'escape');
  433. ext.add("open-hatebu-comment", function (ev, arg) {
  434. var url = window.content.location.href.replace(/^[^/]*\/\//, "");
  435. window.content.location.href = "http://b.hatena.ne.jp/entry/" + url;
  436. }, 'hatebu');
  437. // ext.add("focus-on-content", function(){
  438. // let(elem = document.commandDispatcher.focusedElement) elem && elem.blur();
  439. // gBrowser.focus();
  440. // content.focus();
  441. // }, "forcus on content");
  442. ext.add("hide-sidebar", function(){
  443. var sidebarBox = document.getElementById("sidebar-box");
  444. if (!sidebarBox.hidden) {
  445. toggleSidebar(sidebarBox.getAttribute("sidebarcommand"));
  446. }
  447. }, "hide-sidebar");
  448. ext.add("close-and-next-tab", function (ev, arg) {
  449. var n = gBrowser.mCurrentTab._tPos;
  450. gBrowser.removeCurrentTab();
  451. gBrowser.selectedTab = gBrowser.mTabs[n];
  452. }, "close and focus to next tab");
  453. //////////////////////////////////////
  454. //
  455. ext.add("restart-firefox-add-menu", function(){
  456. const XUL_NS =
  457. "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
  458. var cmdelm = document.createElementNS(XUL_NS, "command");
  459. cmdelm.setAttribute("id", "my_cmd_restartFirefoxKs");
  460. cmdelm.setAttribute("oncommand", "ext.exec('restart-firefox');");
  461. var commandset = document.getElementById("mainCommandSet");
  462. // menu.insertBefore(elm, menu.getElementById("menu_FileQuitItem"));
  463. commandset.appendChild(cmdelm);
  464. var menuelm = document.createElementNS(XUL_NS, "menuitem");
  465. menuelm.setAttribute("label", "Restart Firefox");
  466. menuelm.setAttribute("id", "my_menu_restartFirefoxKs");
  467. menuelm.setAttribute("command", "my_cmd_restartFirefoxKs");
  468. var menu = document.getElementById("menu_FilePopup");
  469. // menu.insertBefore(elm, menu.getElementById("menu_FileQuitItem"));
  470. menu.appendChild(menuelm);
  471. }, "add restart firefox menu");
  472. /////////////////////////////////////////
  473. // feed url
  474. ext.add("feed-add-to-feedly", function(){
  475. var url = window.content.location.href;
  476. window.content.location.href =
  477. "http://cloud.feedly.com/#subscription%2Ffeed%2F" +
  478. encodeURIComponent(url);
  479. }, "Add current feed to feedly");
  480. (function(){
  481. var feedhandler = "http://cloud.feedly.com/#subscription%2Ffeed%2F%s";
  482. function getFeeds(){
  483. const doc = content.document;
  484. var feeds = [[e.getAttribute("title"), e.getAttribute("href")]
  485. for ([, e] in Iterator(doc.querySelectorAll([
  486. 'link[type="application/rss+xml"]',
  487. 'link[type="application/atom+xml"]'
  488. ])))];
  489. var uh = window.content.location.href.replace(/(.*?\/\/[^/]*)(\/.*)?/,
  490. "$1");
  491. for (i = 0; i < feeds.length; i++)
  492. if ( feeds[i][1].substr(0,1) == "/" ) feeds[i][1] = uh + feeds[i][1];
  493. // feeds.unshift([window.content.document.title,
  494. // window.content.location.href]);
  495. return feeds;
  496. };
  497. ext.add("copy-feed-url", function () {
  498. var feeds = getFeeds();
  499. if (! feeds.length) {
  500. display.echoStatusBar("No feed found.");
  501. return;
  502. }
  503. prompt.selector(
  504. {
  505. message : "Select Feed",
  506. collection : feeds,
  507. callback : function (i) {
  508. if (i >= 0) {
  509. command.setClipboardText(feeds[i][1]);
  510. }
  511. }
  512. }
  513. );
  514. }, "Copy url or feed url of current page");
  515. ext.add("open-feed", function () {
  516. var feeds = getFeeds();
  517. if (! feeds.length) {
  518. display.echoStatusBar("No feed found.");
  519. return;
  520. }
  521. prompt.selector({
  522. message : "Select Feed",
  523. collection : feeds,
  524. callback : function (i) {
  525. if (i < 0) {
  526. return;
  527. }
  528. var feedurl = feeds[i][1];
  529. if (feedhandler) {
  530. window.openUILinkIn(
  531. feedhandler.replace("%s", feedurl),
  532. "tab"
  533. );
  534. } else {
  535. window.openUILinkIn(feedurl, "tab");
  536. }
  537. }
  538. });
  539. }, "Copy url or feed url of current page");
  540. })();
  541. ///////////////////////////////////////
  542. // keysnail z menu
  543. ext.add("keysnail-setting-dialog", function(){
  544. KeySnail.openPreference();
  545. }, "keysnail setting dialog");
  546. ext.add("keysnail-plugin-manager", function(){
  547. userscript.openPluginManager();
  548. }, "keysnail plugin manager");
  549. ext.add("firefox-open-addon-manager", function(){
  550. BrowserOpenAddonsMgr();
  551. }, "firefox addon manager");
  552. ext.add("keysnail-reload-init-file", function(){
  553. userscript.reload();
  554. }, "keysnail reload init file");
  555. ext.add("keysnail-z-menu",function(){
  556. var list = [["keysnail-setting-dialog"],
  557. ["keysnail-plugin-manager"],
  558. ["firefox-open-addon-manager"],
  559. ["keysnail-reload-init-file"],
  560. // ["check-for-plugins-update"],
  561. ["restart-firefox"]
  562. ];
  563. prompt.selector(
  564. {
  565. message : "open setting dialog",
  566. collection : list,
  567. callback : function (i) {
  568. ext.exec(list[i][0]);
  569. }
  570. });
  571. },"open keysnail z menu");
  572. ///////////////////////////////////
  573. // search web
  574. ext.add("query-then-engine", function () {
  575. prompt.reader({
  576. message : "Search Word?:",
  577. group : "query_word",
  578. completer : completer.matcher.header(share.friendsCache || []),
  579. callback : function (q) {
  580. if (q) {
  581. prompt.selector({
  582. message : "search \"" + q + "\" with?",
  583. collection : plugins.options["search-url-list"],
  584. width : [20,80],
  585. callback : function (i) {
  586. getBrowser().selectedTab =
  587. getBrowser().addTab(
  588. plugins.options["search-url-list"][i][1].
  589. replace("%r",q).replace(
  590. "%q",encodeURIComponent(q)));
  591. }
  592. });
  593. };
  594. },
  595. initialInput : content.document.getSelection() || ""
  596. });
  597. }, "enter search word and then select engine");
  598. /////////////////////////////////////
  599. // closed tab list
  600. ext.add("list-closed-tabs", function () {
  601. const fav = "chrome://mozapps/skin/places/defaultFavicon.png";
  602. var ss = Cc["@mozilla.org/browser/sessionstore;1"].getService(
  603. Ci.nsISessionStore
  604. );
  605. var json = Cc["@mozilla.org/dom/json;1"].createInstance(Ci.nsIJSON);
  606. var closedTabs = [[tab.image || fav, tab.title, tab.url]
  607. for each (tab in json.decode(ss.getClosedTabData(window)))
  608. ];
  609. if (!closedTabs.length)
  610. return void display.echoStatusBar("No recently closed tab.", 2000);
  611. prompt.selector(
  612. {
  613. message : "select tab to undo:",
  614. collection : closedTabs,
  615. flags : [ICON | IGNORE, 0, 0],
  616. callback : function (i) { if (i >= 0) window.undoCloseTab(i); }
  617. });
  618. }, "List closed tabs");
  619. ///////////////////////////////
  620. // http://malblue.tumblr.com/post/349001250/tips-japanese-keysnail-github
  621. ext.add("list-tab-history", function () {
  622. const fav = "chrome://mozapps/skin/places/defaultFavicon.png";
  623. var tabHistory = [];
  624. var sessionHistory = gBrowser.webNavigation.sessionHistory;
  625. if (sessionHistory.count < 1)
  626. return void display.echoStatusBar("Tab history not exist", 2000);
  627. var curIdx = sessionHistory.index;
  628. for (var i = 0; i < sessionHistory.count; i++) {
  629. var entry = sessionHistory.getEntryAtIndex(i, false);
  630. if (!entry)
  631. continue;
  632. try {
  633. var iconURL = Cc["@mozilla.org/browser/favicon-service;1"]
  634. .getService(Ci.nsIFaviconService)
  635. .getFaviconForPage(entry.URI).spec;
  636. } catch (ex) {}
  637. tabHistory.push([iconURL || fav, entry.title, entry.URI.spec, i]);
  638. }
  639. for (var thIdx = 0; thIdx < tabHistory.length; thIdx++) {
  640. if (tabHistory[thIdx][3] == curIdx) break;
  641. }
  642. prompt.selector(
  643. {
  644. message : "select history in tab",
  645. collection : tabHistory,
  646. flags : [ICON | IGNORE, 0, 0, IGNORE | HIDDEN],
  647. header : ["Title", "URL"],
  648. initialIndex : thIdx,
  649. callback : function(i) {
  650. if (i >= 0) gBrowser.webNavigation.gotoIndex(tabHistory[i][3]);
  651. }
  652. });
  653. }, 'List tab history');
  654. //}}%PRESERVE%
  655. // ========================================================================= //
  656. // ========================= Special key settings ========================== //
  657. key.quitKey = "ESC";
  658. key.helpKey = "<f1>";
  659. key.escapeKey = "C-q";
  660. key.macroStartKey = "";
  661. key.macroEndKey = "";
  662. key.universalArgumentKey = "C-u";
  663. key.negativeArgument1Key = "C--";
  664. key.negativeArgument2Key = "C-M--";
  665. key.negativeArgument3Key = "M--";
  666. key.suspendKey = "Not defined";
  667. // ================================= Hooks ================================= //
  668. hook.setHook('KeyBoardQuit', function (aEvent) {
  669. // ext.exec("hide-sidebar");
  670. let(elem = document.commandDispatcher.focusedElement) elem && elem.blur();
  671. gBrowser.focus();
  672. content.focus();
  673. command.closeFindBar();
  674. if (util.isCaretEnabled()) {
  675. command.resetMark(aEvent);
  676. } else {
  677. goDoCommand("cmd_selectNone");
  678. }
  679. key.generateKey(aEvent.originalTarget, KeyEvent.DOM_VK_ESCAPE, true);
  680. });
  681. hook.setHook('Unload', function () {
  682. util.getBrowserWindows().some(function (win) {
  683. if (win === window) {
  684. return false;
  685. }
  686. const ks = win.KeySnail;
  687. share.pluginUpdater = ks.getPluginUpdater(
  688. share.pluginUpdater.pluginsWithUpdate
  689. );
  690. ks.setUpPluginUpdaterDelegator();
  691. return true;
  692. });
  693. });
  694. // ============================= Key bindings ============================== //
  695. key.setGlobalKey('C-<right>', function () {
  696. gBrowser.mTabContainer.advanceSelectedTab(1, true);
  697. }, 'ひとつ右のタブへ');
  698. key.setGlobalKey('C-<left>', function () {
  699. gBrowser.mTabContainer.advanceSelectedTab(-1, true);
  700. }, 'ひとつ左のタブへ');
  701. key.setGlobalKey('C-<up>', function () {
  702. var browser = getBrowser();
  703. if (browser.mCurrentTab.previousSibling) {
  704. browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos - 1);
  705. } else {
  706. browser.moveTabTo(browser.mCurrentTab,
  707. browser.mTabContainer.childNodes.length - 1);
  708. }
  709. }, '選択中のタブを右へ');
  710. key.setGlobalKey('C-<down>', function () {
  711. var browser = getBrowser();
  712. if (browser.mCurrentTab.nextSibling) {
  713. browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos + 1);
  714. } else {
  715. browser.moveTabTo(browser.mCurrentTab, 0);
  716. }
  717. }, '選択中のタブを左へ');
  718. key.setGlobalKey('<delete>', function (ev, arg) {
  719. let (elem = document.commandDispatcher.focusedElement) elem && elem.blur();
  720. gBrowser.focus();
  721. content.focus();
  722. }, 'コンテンツへフォーカス', true);
  723. key.setGlobalKey('<f11>', function (ev, arg) {
  724. ext.exec("strong-fullscreen", arg, ev);
  725. }, 'go fullscreen with hiding toolbar and tabbar', true);
  726. key.setViewKey('0', function (ev) {
  727. BrowserCloseTabOrWindow();
  728. }, 'タブ / ウィンドウを閉じる');
  729. key.setViewKey('N', function (ev) {
  730. getBrowser().mTabContainer.advanceSelectedTab(1, true);
  731. }, 'ひとつ右のタブへ');
  732. key.setViewKey('P', function (ev) {
  733. getBrowser().mTabContainer.advanceSelectedTab(-1, true);
  734. }, 'ひとつ左のタブへ');
  735. key.setViewKey('o', function (ev, arg) {
  736. ext.exec("hok-start-foreground-mode", arg, ev);
  737. }, 'Start Hit a Hint foreground mode', true);
  738. key.setViewKey('c', function (ev) {
  739. command.interpreter();
  740. }, 'JavaScript のコードを評価');
  741. key.setViewKey('D', function (ev, arg) {
  742. ext.exec("dig-url", arg, ev);
  743. }, 'dig url with selector', true);
  744. key.setViewKey('x', function (aEvent, aArg) {
  745. ext.select(aArg, aEvent);
  746. }, 'エクステ一覧');
  747. key.setViewKey(['t', 'w'], function (ev, arg) {
  748. ext.exec("twitter-client-tweet", arg, ev);
  749. }, 'つぶやく', true);
  750. key.setViewKey(['t', 'p'], function (ev, arg) {
  751. ext.exec("twitter-client-tweet-this-page", arg, ev);
  752. }, 'このページのタイトルと URL を使ってつぶやく', true);
  753. key.setViewKey([['u'], ['<left>']], function (ev) {
  754. goDoCommand("cmd_scrollPageUp");
  755. }, '一画面分スクロールアップ');
  756. key.setViewKey('g', function () {
  757. goDoCommand("cmd_scrollTop");
  758. }, 'ページ先頭へ移動');
  759. key.setViewKey('G', function () {
  760. goDoCommand("cmd_scrollBottom");
  761. }, 'ページ末尾へ移動');
  762. key.setViewKey('r', function (aEvent) {
  763. BrowserReload();
  764. }, '再読み込み');
  765. key.setViewKey('m', function (ev, arg) {
  766. _fi.toogle();
  767. }, 'fetchimiをトグル');
  768. key.setViewKey('SPC', function (ev, arg) {
  769. MultipleTabService.toggleSelection(gBrowser.mCurrentTab);
  770. gBrowser.mTabContainer.advanceSelectedTab(1, true);
  771. }, 'タブの選択をトグルして次のタブ');
  772. key.setViewKey('S-SPC', function (ev, arg) {
  773. MultipleTabService.toggleSelection(gBrowser.selectedTab);
  774. gBrowser.mTabContainer.advanceSelectedTab(-1, true);
  775. }, 'タブの選択をトグルして前のタブ');
  776. key.setViewKey('z', function (ev, arg) {
  777. ext.exec("keysnail-z-menu", arg, ev);
  778. }, 'open keysnail setting menu', true);
  779. key.setViewKey('C-SPC', function (ev, arg) {
  780. MultipleTabService.toggleSelection(gBrowser.selectedTab);
  781. }, 'タブの選択をトグル');
  782. key.setViewKey('e', function () {
  783. command.focusElement(command.elementsRetrieverTextarea, 0);
  784. }, '最初のインプットエリアへフォーカス', true);
  785. key.setViewKey('S', function (ev, arg) {
  786. if (window.loadURI) {
  787. 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{}");
  788. }
  789. }, 'google reader share');
  790. key.setViewKey('!', function (ev, arg) {
  791. shell.input();
  792. }, 'Command system');
  793. key.setViewKey('R', function () {
  794. BrowserReloadSkipCache();
  795. }, '更新(キャッシュを無視)');
  796. key.setViewKey('<backspace>', function () {
  797. BrowserBack();
  798. }, '戻る');
  799. key.setViewKey('S-<backspace>', function () {
  800. BrowserForward();
  801. }, '進む');
  802. key.setViewKey('q', function (ev, arg) {
  803. ext.exec("query-then-engine", arg, ev);
  804. }, 'enter search word and then select engine', true);
  805. key.setViewKey('/', function () {
  806. command.iSearchForward();
  807. }, 'インクリメンタル検索', true);
  808. key.setViewKey('?', function (ev) {
  809. command.iSearchForwardKs(ev);
  810. }, 'Emacs ライクなインクリメンタル検索', true);
  811. key.setViewKey('a', function (ev, arg) {
  812. allTabs.open();
  813. }, 'alltabs.open');
  814. key.setViewKey([['<right>'], ['d']], function (ev) {
  815. goDoCommand("cmd_scrollPageDown");
  816. }, '一画面スクロールダウン');
  817. key.setViewKey([['<prior>'], ['<next>']], function (ev, arg) {
  818. return;
  819. }, 'ignore');
  820. key.setViewKey(':', function (ev, arg) {
  821. return !document.getElementById("keysnail-prompt").hidden &&
  822. document.getElementById("keysnail-prompt-textbox").focus();
  823. }, 'KeySnail のプロンプトへフォーカス', true);
  824. key.setViewKey('B', function (ev) {
  825. var browser = getBrowser();
  826. if (browser.mCurrentTab.previousSibling) {
  827. browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos - 1);
  828. } else {
  829. browser.moveTabTo(browser.mCurrentTab,
  830. browser.mTabContainer.childNodes.length - 1);
  831. }
  832. }, '選択中のタブを左へ');
  833. key.setViewKey('C', function (ev, arg) {
  834. ext.exec("linksnail", arg, ev);
  835. }, 'LinkSnail', true);
  836. key.setViewKey('C-<backspace>', function (ev, arg) {
  837. ext.exec("list-tab-history", arg, ev);
  838. }, 'List tab history', true);
  839. key.setViewKey('I', function (ev, arg) {
  840. ext.exec("instapaper-post-page-with-comment", arg, ev);
  841. }, 'post page and comment', true);
  842. key.setViewKey('T', function (ev, arg) {
  843. ext.exec("mstranslator-open-prompt", arg, ev);
  844. }, 'MSTranslator - Open prompt', true);
  845. key.setViewKey('n', function (ev) {
  846. key.generateKey(ev.originalTarget, KeyEvent.DOM_VK_DOWN, true);
  847. }, '一行スクロールダウン');
  848. key.setViewKey('p', function (ev) {
  849. key.generateKey(ev.originalTarget, KeyEvent.DOM_VK_UP, true);
  850. }, '一行スクロールアップ');
  851. key.setViewKey('f', function (ev) {
  852. key.generateKey(ev.originalTarget, KeyEvent.DOM_VK_RIGHT, true);
  853. }, '右へスクロール');
  854. key.setViewKey('b', function (ev) {
  855. key.generateKey(ev.originalTarget, KeyEvent.DOM_VK_LEFT, true);
  856. }, '左へスクロール');
  857. key.setViewKey('F', function (ev) {
  858. var browser = getBrowser();
  859. if (browser.mCurrentTab.nextSibling) {
  860. browser.moveTabTo(browser.mCurrentTab, browser.mCurrentTab._tPos + 1);
  861. } else {
  862. browser.moveTabTo(browser.mCurrentTab, 0);
  863. }
  864. }, '選択中のタブを右へ');
  865. key.setViewKey('U', function (ev, arg) {
  866. ext.exec("list-closed-tabs", arg, ev);
  867. }, 'List closed tabs', true);
  868. key.setEditKey('C-<tab>', function (ev) {
  869. command.walkInputElement(command.elementsRetrieverTextarea, true, true);
  870. }, '次のテキストエリアへフォーカス');
  871. key.setEditKey('C-a', function (ev) {
  872. command.beginLine(ev);
  873. }, '行頭へ移動');
  874. key.setEditKey('C-e', function (ev) {
  875. command.endLine(ev);
  876. }, '行末へ');
  877. key.setEditKey('C-d', function (ev) {
  878. goDoCommand("cmd_deleteCharForward");
  879. }, '次の一文字削除');
  880. key.setEditKey('C-b', function (ev) {
  881. command.previousChar(ev);
  882. }, '一文字左へ移動');
  883. key.setEditKey('C-f', function (ev) {
  884. command.nextChar(ev);
  885. }, '一文字右へ移動');
  886. key.setEditKey('C-h', function (ev) {
  887. goDoCommand("cmd_deleteCharBackward");
  888. }, '前の一文字を削除');
  889. key.setEditKey('C-k', function (ev) {
  890. command.killLine(ev);
  891. }, 'カーソルから先を一行カット (Kill line)');
  892. key.setEditKey('C-l', function (ev) {
  893. command.recenter(ev);
  894. }, 'カーソル位置が画面の中央へ来るようスクロール', true);
  895. key.setEditKey('C-n', function (ev) {
  896. command.nextLine(ev);
  897. }, '一行下へ');
  898. key.setEditKey('C-p', function (ev) {
  899. command.previousLine(ev);
  900. }, '一行上へ');
  901. key.setEditKey('C-o', function (ev) {
  902. command.openLine(ev);
  903. }, '行を開く (Open line)');
  904. key.setViewKey('f', function (ev, arg) {
  905. ext.exec('strong-fullscreen', arg, ev);
  906. }, 'go fullscreen with hiding toolbar and tabbar', true);