This file contains 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 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 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 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 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 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 copy function | |
// @namespace khsk | |
// @description 関数説明から関数をコピーするスクリプト | |
// @include http://php.net/manual/*/* | |
// @include http://www.php.net/manual/*/* | |
// @include http://jp.php.net/manual/*/* | |
// @version 1 | |
// @grant none |
This file contains 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 tag disable autocomplete | |
// @namespace khsk | |
// @description タグの入力時にブラウザのオートコンプリート機能を無効化する | |
// @include http://qiita.com/drafts/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== |