BetterRecipes

Improve your AllRecipes Experience

Co to jest BetterRecipes?

BetterRecipes to rozszerzenie Chrome opracowane przez agfaulkner, a jego główną funkcją jest „Improve your AllRecipes Experience”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BetterRecipes

Pobierz pliki rozszerzeń BetterRecipes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa BetterRecipes BetterRecipes
ID maoelcjgahpimbdpiadlpmgnbdhgoapj
Oficjalny URL https://chromewebstore.google.com/detail/betterrecipes/maoelcjgahpimbdpiadlpmgnbdhgoapj
Opis Improve your AllRecipes Experience
Rozmiar pliku 14.38 KB
Liczba instalacji 24
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2019-04-15
Data Publikacji 2019-04-15
Deweloper agfaulkner
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}