COOKPAD Recipe Book
This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.
Vad är COOKPAD Recipe Book?
COOKPAD Recipe Book är en Chrome-tillägg utvecklad av http://www.jstwi.com, och dess huvudfunktion är "This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.".
Tilläggsskärmbilder
Ladda ner COOKPAD Recipe Book-förlängningens CRX-fil
Ladda ner COOKPAD Recipe Book-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | nojoglckflhkkmpdkhafnembhapmnipb |
Officiell webbadress | https://chrome.google.com/webstore/detail/cookpad-recipe-book/nojoglckflhkkmpdkhafnembhapmnipb |
Beskrivning | This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support. |
Filstorlek | 66.63 KB |
Antal Installationer | 602 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2017-12-16 |
Publiceringsdatum | 2017-12-16 |
Betyg | 3.86/5 Totalt 7 Betyg |
Utvecklare | http://www.jstwi.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |