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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}