COOKPAD Recipe Book
This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.
COOKPAD Recipe Bookとは何ですか?
COOKPAD Recipe Bookはhttp://www.jstwi.comによって開発されたChromeの拡張機能で、その主な機能は「This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.」です。
拡張機能のスクリーンショット
COOKPAD Recipe Book拡張機能のCRXファイルをダウンロード
COOKPAD Recipe Book拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This application displays a list of the recipes you've viewed on COOKPAD.
You can mark favorite recipes. And you can make the list, to classify the recipe.
GitHub:
https://github.com/oken1/cookpad_recipe_book 拡張機能の基本情報
| 名前 | |
| ID | nojoglckflhkkmpdkhafnembhapmnipb |
| 公式URL | https://chrome.google.com/webstore/detail/cookpad-recipe-book/nojoglckflhkkmpdkhafnembhapmnipb |
| 説明 | This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support. |
| ファイルサイズ | 66.63 KB |
| インストール数 | 602 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2017-12-16 |
| 公開日 | 2017-12-16 |
| 評価 | 3.86/5 合計 7 レビュー |
| 開発者 | http://www.jstwi.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "COOKPAD Recipe Book",
"version": "1.1",
"description": "__MSG_manifest_description__",
"default_locale": "en",
"content_security_policy": "script-src 'self'; object-src 'self'",
"minimum_chrome_version": "20.0",
"browser_action": {
"default_icon": "images\/icon128.png",
"default_title": "COOKPAD Recipe Book",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/cookpad.com\/recipe\/*",
"*:\/\/en.cookpad.com\/recipe\/*"
],
"js": [
"js\/lib\/jquery.js",
"js\/util.js",
"js\/content.js"
]
}
],
"icons": {
"16": "images\/icon128.png",
"32": "images\/icon128.png",
"48": "images\/icon128.png",
"128": "images\/icon128.png"
},
"background": {
"scripts": [
"js\/lib\/jquery.js",
"js\/util.js",
"js\/background.js"
]
},
"permissions": [
"notifications",
"tabs"
]
} | |