BetterRecipes

Improve your AllRecipes Experience

Vad är BetterRecipes?

BetterRecipes är en Chrome-tillägg utvecklad av agfaulkner, och dess huvudfunktion är "Improve your AllRecipes Experience".

Tilläggsskärmbilder

screenshot

Ladda ner BetterRecipes-förlängningens CRX-fil

Ladda ner BetterRecipes-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn BetterRecipes BetterRecipes
ID maoelcjgahpimbdpiadlpmgnbdhgoapj
Officiell webbadress https://chromewebstore.google.com/detail/betterrecipes/maoelcjgahpimbdpiadlpmgnbdhgoapj
Beskrivning Improve your AllRecipes Experience
Filstorlek 14.38 KB
Antal Installationer 24
Aktuell Version 1.0.3
Senast Uppdaterad 2019-04-15
Publiceringsdatum 2019-04-15
Utvecklare agfaulkner
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}