Created
January 16, 2009 02:33
-
-
Save mongrelP/47774 to your computer and use it in GitHub Desktop.
[Ubiquity] ニコニコ動画
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
/** | |
* nicovideo-search | |
* | |
*/ | |
makeSearchCommand({ | |
name: "nicovideo", | |
url: "http://www.nicovideo.jp/search/{QUERY}", | |
icon: "http://www.nicovideo.jp/favicon.ico", | |
description: "Searches nicovideo for your words.", | |
}); | |
makeSearchCommand({ | |
name: "nicovideo-tag", | |
url: "http://www.nicovideo.jp/tag/{QUERY}", | |
icon: "http://www.nicovideo.jp/favicon.ico", | |
description: "Searches nicovideo tag for your words.", | |
}); | |
makeSearchCommand({ | |
name: "nico-dic-entry", | |
url: "http://dic.nicovideo.jp/s/b/{QUERY}", | |
icon: "http://dic.nicovideo.jp/favicon.ico", | |
description: "Searches nicopedia for your words on entry.", | |
}); | |
makeSearchCommand({ | |
name: "nico-dic-view", | |
url: "http://dic.nicovideo.jp/a/{QUERY}", | |
icon: "http://dic.nicovideo.jp/favicon.ico", | |
description: "Just View and edit nicopedia for your words.", | |
}); | |
makeSearchCommand({ | |
name: "nico-ch", | |
url: "http://ch.nicovideo.jp/search/{QUERY}?mode=s", | |
icon: "http://ch.nicovideo.jp/favicon.ico", | |
description: "Searches niconicochannel and community for your words.", | |
}); | |
makeSearchCommand({ | |
name: "nico-ch-tag", | |
url: "http://ch.nicovideo.jp/search/{QUERY}?mode=t", | |
icon: "http://ch.nicovideo.jp/favicon.ico", | |
description: "Searches niconicochannel and community tag for your words.", | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment