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 |
电子邮箱 | [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" ] } |