/*
* @title おしゃべりクッキング レシピ検索
* @description おしゃべりクッキングのレシピを Google で検索。
* @include http://*
* @license MIT License
* @require
*/
(function (k, q) {
k = prompt("おしゃべりクッキング レシピ検索");
if (!k) return;
q = "site:asahi.co.jp/oshaberi/recipe " + k;
location.href = "https://www.google.co.jp/search?q=" + encodeURIComponent(q);
}());