COOKPAD Recipe Book

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

Cos'è COOKPAD Recipe Book?

COOKPAD Recipe Book è un'estensione di Chrome sviluppata da http://www.jstwi.com, e la sua funzione principale è "This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione COOKPAD Recipe Book

Scarica i file di estensione COOKPAD Recipe Book in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome COOKPAD Recipe Book COOKPAD Recipe Book
ID nojoglckflhkkmpdkhafnembhapmnipb
URL Ufficiale https://chrome.google.com/webstore/detail/cookpad-recipe-book/nojoglckflhkkmpdkhafnembhapmnipb
Descrizione This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.
Dimensione del File 66.63 KB
Conteggio Installazioni 602
Versione Corrente 1.1
Ultimo Aggiornamento 2017-12-16
Data di Pubblicazione 2017-12-16
Valutazione 3.86/5 Totale 7 Valutazioni
Sviluppatore http://www.jstwi.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}