2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Qiita][ブックマークレット] プロンプトで入力した特定キーワードでQiita内の自分の記事を検索する

Last updated at Posted at 2017-12-24

Qiitaのデザイン変更で自分の過去記事の検索へのクリック数が増えてめんどくさくなったので、特定キーワードで自分の記事を検索したページを表示するブックマークレットを作成しました。(できればトップページから検索する方法復活して欲しさはありますが・・・)

ブックマークレットの作成方法自体は以下の記事に書いています。

Markdownのリンク形式で現在のページのタイトルとURLを表示するブックマークレットを登録(Qiitaの記事作成補助) - Qiita

実装

プロンプトでキーワード入力して、URL作って検索ページにリダイレクトしてるだけです。
QiitaのユーザーIDは自分のIDに変更する必要はあります。

改行あり(QiitaユーザーIDの変更は必要)
javascript:(
    function(){
        var qiitaUserId = 'koara-local';
        var searchKeyword = window.prompt("Qiita自己記事検索: 検索キーワードを入力","");
        location.href = 'https://qiita.com/search?utf8=✓&sort=&q=user%3A' + qiitaUserId + '+' + searchKeyword;
    }
)();
一行(QiitaユーザーIDの変更は必要)
javascript: (function () { var qiitaUserId = 'koara-local'; var searchKeyword = window.prompt("Qiita自己記事検索: 検索キーワードを入力", ""); location.href = 'https://qiita.com/search?utf8=✓&sort=&q=user%3A' + qiitaUserId + '+' + searchKeyword; })();
2
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?