Recipe Filter

Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.

Τι είναι το Recipe Filter;

Το Recipe Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Seansoft, και η κύρια λειτουργία του είναι "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".

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

screenshot
screenshot

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

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

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

                        This extension will detect recipes on any page you visit and will highlight them at the top of the page. Easy!

No more hunting for the actual recipe when you visit a long-winded food blog!

You can turn it off for specific sites if you find it's not needed and edit the blacklist under "Options" when you right-click the green Recipe Filter icon in your toolbar.

This is an open source project: https://github.com/sean-public/RecipeFilter                    

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

Όνομα Recipe Filter Recipe Filter
ID ahlcdjbkdaegmljnnncfnhiioiadakae
Επίσημο URL https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae
Περιγραφή Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Μέγεθος Αρχείου 12.64 KB
Αριθμός Εγκαταστάσεων 56,805
Τρέχουσα Έκδοση 0.3
Τελευταία Ενημέρωση 2020-06-13
Ημερομηνία Δημοσίευσης 2020-06-13
Αξιολόγηση 4.84/5 Συνολικά 192 Αξιολογήσεις
Προγραμματιστής Seansoft
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sean-public/RecipeFilter
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sean-public/RecipeFilter
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Recipe Filter",
    "short_name": "Recipe Filter",
    "version": "0.3",
    "description": "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.",
    "icons": {
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "html\/options.html",
    "browser_action": {
        "default_title": "Recipe Filter",
        "default_icon": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/recipe_filter.css"
            ],
            "js": [
                "js\/main.js"
            ]
        }
    ]
}