Version 12 (modified by zigorou, 5 years ago)

--

iknow_hack

英語勉強SNS iKnow(http://www.iknow.co.jp/intro)をかってに使いやすくするプロジェクト

keyboard shortcutのまとめ

iKnow!

スペースキー
オーディオの再生
Page down
訳文表示
Tab
次のタブ(例文やスペル練習など)に移動します
矢印キー(← →)
「次へ」または「メイン」のどちらかに移動します
矢印キー(← → ↓ ↑)
選択クイズの際に、上下左右に移動しますので、そちらでお選びください
Enterキー
決定

Dictation

Ctrlキーと「<」の同時押し
ヒント(注:矢印キーではございません、キーボード下方にあります<です)
Ctrlキーと「>」の同時押し
オーディオ再生
矢印キー(← →)
「次へ」または「メイン」のどちらかに移動します
Enterキー
決定

See also


sort_friends

友達リストを成績順にソートするブックマークレット

http://coderepos.org/share/browser/lang/javascript/iknow_hack/sort_friends_bookmarklet.txt

使用例:

http://www.nishiohirokazu.org/files/sort_friends.png

ブックマークレット末尾のusernameのところを自分のIDにする必要がある(FIX ME!)

License

Public Domain


日記の全単語にパーマリンクを貼る JS

今のところ Firefox 専用

var nodes = [];
var result = document.evaluate('id("content_panel_container")//text()[local-name(..) != "A"]', document, null, 6, null);
for (var i = 0; i < result.snapshotLength; i ++) nodes.push(result.snapshotItem(i));

nodes
  .filter(function(t) { return !t.nodeValue.match(/^\s*$/); })
    .map(function(n) {
      var span = document.createElement('span');
      span.innerHTML = n.nodeValue.replace(
                           /([A-Za-z\-]+)/g,
                           '<a href="http://www.iknow.co.jp/item/$1" style="color: #494949">$1</a>');
      n.parentNode.replaceChild(span, n);
    });

ライセンス

Public domain GreaseMonkey? や Bookmarklet にして使ってください


iknowvisitedentry.user.js

既読のエントリの背景色と色を変えて分かりやすくするgreasemonkey

Install

http://f.hatena.ne.jp/images/fotolife/Z/ZIGOROu/20071128/20071128210550.png

// ==UserScript==
// @name           iKnow Visited Entry
// @namespace      http://moz-addon.g.hatena.ne.jp/ZIGOROu/
// @description    add visted style for friend entry link and remove in news
// @include        http://www.iknow.co.jp/notifications
// ==/UserScript==

なので今はMy Newsのview moreから見れるページのみ適用。 他にもあれば教えて下さい。

License

Public Domain