COOKPAD Recipe Book
This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.
Was ist COOKPAD Recipe Book?
COOKPAD Recipe Book ist eine Chrome-Erweiterung, die von http://www.jstwi.com entwickelt wurde, und ihr Hauptmerkmal ist "This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.".
Erweiterungsscreenshots
COOKPAD Recipe Book-Erweiterungs-CRX-Datei herunterladen
Laden Sie COOKPAD Recipe Book-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
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | nojoglckflhkkmpdkhafnembhapmnipb |
Offizielle URL | https://chrome.google.com/webstore/detail/cookpad-recipe-book/nojoglckflhkkmpdkhafnembhapmnipb |
Beschreibung | This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support. |
Dateigröße | 66.63 KB |
Installationsanzahl | 602 |
Aktuelle Version | 1.1 |
Letztes Update | 2017-12-16 |
Veröffentlichungsdatum | 2017-12-16 |
Bewertung | 3.86/5 Insgesamt 7 Bewertungen |
Entwickler | http://www.jstwi.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |