BetterRecipes

Improve your AllRecipes Experience

Was ist BetterRecipes?

BetterRecipes ist eine Chrome-Erweiterung, die von agfaulkner entwickelt wurde, und ihr Hauptmerkmal ist "Improve your AllRecipes Experience".

Erweiterungsscreenshots

screenshot

BetterRecipes-Erweiterungs-CRX-Datei herunterladen

Laden Sie BetterRecipes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Improve your AllRecipes experience by decluttering the page and placing both the ingredients and instructions side by side. 

Click the serving tray icon to download a simple text version of the recipe.                    

Grundlegende Informationen zur Erweiterung

Name BetterRecipes BetterRecipes
ID maoelcjgahpimbdpiadlpmgnbdhgoapj
Offizielle URL https://chromewebstore.google.com/detail/betterrecipes/maoelcjgahpimbdpiadlpmgnbdhgoapj
Beschreibung Improve your AllRecipes Experience
Dateigröße 14.38 KB
Installationsanzahl 24
Aktuelle Version 1.0.3
Letztes Update 2019-04-15
Veröffentlichungsdatum 2019-04-15
Entwickler agfaulkner
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BetterRecipes",
    "version": "1.0.3",
    "description": "Improve your AllRecipes Experience",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.allrecipes.com\/recipe\/*"
            ],
            "js": [
                "BetterRecipes.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "\/icons\/tray.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "downloads"
    ]
}