COOKPAD Recipe Book

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

Qu'est-ce que COOKPAD Recipe Book ?

COOKPAD Recipe Book est une extension Chrome développée par http://www.jstwi.com, et sa fonction principale est "This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension COOKPAD Recipe Book

Téléchargez les fichiers d'extension COOKPAD Recipe Book au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom COOKPAD Recipe Book COOKPAD Recipe Book
ID nojoglckflhkkmpdkhafnembhapmnipb
URL Officiel https://chrome.google.com/webstore/detail/cookpad-recipe-book/nojoglckflhkkmpdkhafnembhapmnipb
Description This application displays a list of the recipes you've viewed on COOKPAD. Japanese/English support.
Taille du Fichier 66.63 KB
Nombre d'Installations 602
Version Actuelle 1.1
Dernière Mise à Jour 2017-12-16
Date de Publication 2017-12-16
Évaluation 3.86/5 Total 7 Évaluations
Développeur http://www.jstwi.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}