COOKPAD Recipe Book

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

Wat is COOKPAD Recipe Book?

COOKPAD Recipe Book is een Chrome-extensie ontwikkeld door http://www.jstwi.com, en de belangrijkste functie is "This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie COOKPAD Recipe Book

Download COOKPAD Recipe Book-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam COOKPAD Recipe Book COOKPAD Recipe Book
ID nojoglckflhkkmpdkhafnembhapmnipb
Officiële URL https://chrome.google.com/webstore/detail/cookpad-recipe-book/nojoglckflhkkmpdkhafnembhapmnipb
Beschrijving This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.
Bestandsgrootte 66.63 KB
Aantal Installaties 602
Huidige Versie 1.1
Laatst Bijgewerkt 2017-12-16
Publicatiedatum 2017-12-16
Beoordeling 3.86/5 Totaal 7 Beoordelingen
Ontwikkelaar http://www.jstwi.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}