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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |