レシピ検索
レシピの検索を快適にする拡張アプリ
Was ist レシピ検索?
レシピ検索 ist eine Chrome-Erweiterung, die von https://saishinjoho.com entwickelt wurde, und ihr Hauptmerkmal ist "レシピの検索を快適にする拡張アプリ".
Erweiterungsscreenshots
レシピ検索-Erweiterungs-CRX-Datei herunterladen
Laden Sie レシピ検索-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Googleの検索結果に、例えばクックパッドの場合は つくれぽ と呼ばれる、各レシピサイトによる「レシピの人気指数」や「はてブの数」、「ツイートの数」、「facebookいいねの数」を追加して、レシピページを開かずにしてレシピの良し悪しを判断出来ます。
検索窓から「inurl」などのGoogleのパラメータを最適化された形で自動的に検索ワードに追加して、無料ユーザーでは難しい場合もあるレシピサイトから人気レシピ検索を簡単にする事が出来ます。
対応サイト:
クックパッド(cookpad)、TEPORE、NHKきょうの料理、白ご飯、海上自衛隊レシピ、E・レシピ、レシピブログ、ボブとアンジー、節約レシピ、kikkomanホームクッキング、楽天レシピ、キューピー3分クッキング、オレンジページnet、フードソムリエ、ネスレ、シェフごはん、レタスクラブネット、AJINOMOT Park
GitHub: https://github.com/yukihirok/recipekensaku Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ibdccdgilofgabhpjofnmdhiiolhamkn |
| Offizielle URL | https://chromewebstore.google.com/detail/%E3%83%AC%E3%82%B7%E3%83%94%E6%A4%9C%E7%B4%A2/ibdccdgilofgabhpjofnmdhiiolhamkn |
| Beschreibung | レシピの検索を快適にする拡張アプリ |
| Dateigröße | 493 KB |
| Installationsanzahl | 379 |
| Aktuelle Version | 0.2.6.12 |
| Letztes Update | 2015-11-28 |
| Veröffentlichungsdatum | 2015-11-28 |
| Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
| Entwickler | https://saishinjoho.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/yukihirok/recipekensaku |
| Unterstützte Sprachen | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "\u30ec\u30b7\u30d4\u691c\u7d22",
"version": "0.2.6.12",
"description": "\u30ec\u30b7\u30d4\u306e\u691c\u7d22\u3092\u5feb\u9069\u306b\u3059\u308b\u62e1\u5f35\u30a2\u30d7\u30ea",
"icons": {
"16": "icons\/icon16.png",
"19": "icons\/icon19.png",
"26": "icons\/icon26.png",
"36": "icons\/icon36.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"jquery-2.1.3.min.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icons\/icon19.png",
"default_popup": "popup.html",
"default_title": "\u30ec\u30b7\u30d4\u691c\u7d22"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.google.com\/*",
"http:\/\/www.google.co.jp\/*",
"https:\/\/www.google.com\/*",
"https:\/\/www.google.co.jp\/*"
],
"css": [
"content_script.css",
"css\/font-awesome.min.css"
],
"js": [
"jquery-2.1.3.min.js",
"content_script.js"
],
"run_at": "document_end"
}
],
"permissions": [
"http:\/\/graph.facebook.com\/",
"http:\/\/urls.api.twitter.com\/",
"http:\/\/api.b.st-hatena.com\/",
"http:\/\/*.jkensaku.com\/",
"http:\/\/park.ajinomoto.co.jp\/",
"http:\/\/www.lettuceclub.net\/",
"https:\/\/chefgohan.gnavi.co.jp\/",
"http:\/\/chefgohan.gnavi.co.jp\/",
"http:\/\/www.food-sommelier.jp\/",
"http:\/\/www.orangepage.net\/",
"http:\/\/recipe.rakuten.co.jp\/",
"http:\/\/www.recipe-blog.jp\/",
"http:\/\/erecipe.woman.excite.co.jp\/",
"http:\/\/www.kyounoryouri.jp\/",
"http:\/\/cookpad.com\/"
],
"web_accessible_resources": [
"css\/*.css",
"fonts\/*"
]
} | |