BetterRecipes

Improve your AllRecipes Experience

What is BetterRecipes?

BetterRecipes is a Chrome extension developed by agfaulkner, and its main feature is "Improve your AllRecipes Experience".

Extension Screenshots

screenshot

Download BetterRecipes Extension CRX File

Download BetterRecipes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name BetterRecipes BetterRecipes
ID maoelcjgahpimbdpiadlpmgnbdhgoapj
Official URL https://chromewebstore.google.com/detail/betterrecipes/maoelcjgahpimbdpiadlpmgnbdhgoapj
Description Improve your AllRecipes Experience
File Size 14.38 KB
Installation Count 24
Current Version 1.0.3
Last Updated 2019-04-15
Publish Date 2019-04-15
Developer agfaulkner
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}