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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में COOKPAD Recipe Book एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |