Browse Source

Merge branch 'master' of github.com:10sr/dotfiles

pull/1/head
10sr 11 years ago
parent
commit
3560f02d30
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      _keysnail.js

+ 7
- 2
_keysnail.js View File

@@ -113,7 +113,7 @@ local["^http://w2.p2.2ch.net/p2/read.php"] = [


///////////////////////////////////////// /////////////////////////////////////////
// feedly // feedly
local["^http://www.feedly.com/"] = [
local["^http://(www|cloud)\.feedly\.com/"] = [
['d', null], ['d', null],
['j', null], ['j', null],
['k', null], ['k', null],
@@ -130,7 +130,12 @@ local["^http://www.feedly.com/"] = [
// ev.target.dispatchEvent(key.stringToKeyEvent("g", true)); // ev.target.dispatchEvent(key.stringToKeyEvent("g", true));
// }], // }],
['l', function(ev, arg){ ['l', function(ev, arg){
window.content.location.href = "http://www.feedly.com/home#latest";
var host = window.content.location.host;
if (host === "cloud.feedly.com") {
window.content.location.href = "http://" + host + "/#latest";
} else if (host === "www.feedly.com") {
window.content.location.href = "http://" + host + "/home#latest";
}
}], }],
[['t', 'p'], function(ev, arg){ [['t', 'p'], function(ev, arg){
ev.target.dispatchEvent(key.stringToKeyEvent("t", true)); ev.target.dispatchEvent(key.stringToKeyEvent("t", true));


Loading…
Cancel
Save