This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dummy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Qiita add background color to comment | |
| // @namespace khsk | |
| // @description フィードの投稿にコメントが付いているならば、背景色を追加する | |
| // @include http://qiita.com/ | |
| // @include https://qiita.com/ | |
| // @include http://qiita.com/items | |
| // @include https://qiita.com/items | |
| // @include http://qiita.com/stock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Qiita Code Number | |
| // @namespace khsk | |
| // @description コードに選択不可能な行番号を追加する | |
| // @include http://qiita.com/*/items/* | |
| // @include https://qiita.com/*/items/* | |
| // @include http://qiita.com/*/private/* | |
| // @include https://qiita.com/*/private/* | |
| // @version 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| B.RegistReminder = { | |
| count: function () { | |
| if (B.user) { | |
| B.cookie.clear('vcount'); | |
| } else { | |
| var vcount = B.cookie.get('vcount'); | |
| vcount = vcount ? ++vcount : 1; | |
| B.cookie.set('vcount', vcount , '+10y'); | |
| if (vcount % 40 == 0) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Hide specific tag | |
| // @namespace khsk | |
| // @description 特定のタグを持つイベントを非表示にする | |
| // @include http://eventdots.jp/event/search* | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Qiita user filter for feed | |
| // @namespace khsk | |
| // @description フィードから特定ユーザーの投稿を非表示にする | |
| // @include http://qiita.com/ | |
| // @include https://qiita.com/ | |
| // @include http://qiita.com/items | |
| // @include https://qiita.com/items | |
| // @include http://qiita.com/stock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Qiita Source | |
| // @namespace com.cielavenir | |
| // @description Show link to Qiita Markdown source. | |
| // @include http://qiita.com/*/items/* | |
| // @include http://qiita.com/*/private/* | |
| // @version 0.0.0.3 | |
| // ==/UserScript== | |
| (function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Qiita show username to feed | |
| // @namespace khsk | |
| // @description フィードに投稿者の名前を追加する | |
| // @include http://qiita.com/ | |
| // @include https://qiita.com/ | |
| // @include http://qiita.com/items | |
| // @include https://qiita.com/items | |
| // @include http://qiita.com/stock | |
| // @include https://qiita.com/stock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Qiita show user Icon to feed | |
| // @namespace khsk | |
| // @description フィードの記事アイコンをホバーしたとき、投稿者のアイコンに変更する | |
| // @include http://qiita.com/ | |
| // @include https://qiita.com/ | |
| // @include http://qiita.com/items | |
| // @include https://qiita.com/items | |
| // @include http://qiita.com/stock |