COOKPAD Recipe Book

This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.

Apa itu COOKPAD Recipe Book?

COOKPAD Recipe Book adalah ekstensi Chrome yang dikembangkan oleh http://www.jstwi.com, dan fitur utamanya adalah "This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi COOKPAD Recipe Book

Unduh file ekstensi COOKPAD Recipe Book dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama COOKPAD Recipe Book COOKPAD Recipe Book
ID nojoglckflhkkmpdkhafnembhapmnipb
URL Resmi https://chrome.google.com/webstore/detail/cookpad-recipe-book/nojoglckflhkkmpdkhafnembhapmnipb
Deskripsi This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.
Ukuran File 66.63 KB
Jumlah Instalasi 602
Versi Saat Ini 1.1
Terakhir Diperbarui 2017-12-16
Tanggal Publikasi 2017-12-16
Penilaian 3.86/5 Total 7 Penilaian
Pengembang http://www.jstwi.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}