Jump To Recipe

Extracts only the recipe from any website or blog page, without any life stories or clutter.

Τι είναι το Jump To Recipe;

Το Jump To Recipe είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Steven Lam, και η κύρια λειτουργία του είναι "Extracts only the recipe from any website or blog page, without any life stories or clutter.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Jump To Recipe

Λήψη αρχείων επέκτασης Jump To Recipe σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Tired of scrolling endlessly to find the recipe on a lengthy website?

Jump To Recipe will do the searching for you and display the recipe as a succinct popup complete with servings, time, ingredients and directions.

No more having to dig through ridiculous stories about the chef's entire family history or mailing lists, this extension is active for your entire browsing session and pops up automatically whenever you visit a recipe page.

You can also save your favourite recipes to the menu, so they’re easily accessible for the next time you want to bake or cook.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Jump To Recipe Jump To Recipe
ID gmkblbmghnolinkhfmkidocbojcfiejm
Επίσημο URL https://chromewebstore.google.com/detail/jump-to-recipe/gmkblbmghnolinkhfmkidocbojcfiejm
Περιγραφή Extracts only the recipe from any website or blog page, without any life stories or clutter.
Μέγεθος Αρχείου 46.47 KB
Αριθμός Εγκαταστάσεων 4,224
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2022-02-17
Ημερομηνία Δημοσίευσης 2022-02-17
Αξιολόγηση 4.96/5 Συνολικά 24 Αξιολογήσεις
Προγραμματιστής Steven Lam
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jump To Recipe",
    "description": "Extracts only the recipe from any website or blog page, without any life stories or clutter.",
    "homepage_url": "https:\/\/github.com\/steven-lm\/Jump-To-Recipe",
    "version": "1.0.0",
    "manifest_version": 3,
    "action": {
        "default_title": "Jump To Recipe",
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "end.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        },
        {
            "run_at": "document_idle",
            "js": [
                "after.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "thirdParty\/jquery-3.6.0.min.js",
                "main.js"
            ],
            "html": [
                "popup.html"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/onlyrecipe.herokuapp.com\/*"
    ],
    "icons": {
        "16": "\/icons\/icon16.png",
        "48": "\/icons\/icon128.png",
        "128": "\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "popup.html"
            ]
        }
    ]
}