Recipe Filter

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

Recipe Filter là gì?

Recipe Filter là một tiện ích mở rộng Chrome được phát triển bởi Seansoft, và tính năng chính của nó là "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Recipe Filter

Tải xuống các tệp mở rộng Recipe Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Recipe Filter Recipe Filter
ID ahlcdjbkdaegmljnnncfnhiioiadakae
URL Chính Thức https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae
Mô tả Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Kích Thước Tệp 12.64 KB
Số Lần Cài Đặt 56,805
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2020-06-13
Ngày Phát Hành 2020-06-13
Đánh Giá 4.84/5 Tổng số 192 Đánh Giá
Nhà Phát Triển Seansoft
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sean-public/RecipeFilter
URL Trang Trợ Giúp https://github.com/sean-public/RecipeFilter
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}