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"
            ]
        }
    ]
}