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 هو إضافة Chrome تم تطويرها بواسطة http://www.jstwi.com، والميزة الرئيسية لها هي "This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة COOKPAD Recipe Book

قم بتنزيل ملفات الامتداد COOKPAD Recipe Book بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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                    

معلومات أساسية عن التمديد

الاسم COOKPAD Recipe Book 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"
    ]
}