Recipe Filter

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

什么是Recipe Filter?

Recipe Filter是由Seansoft开发的Chrome扩展程序,该扩展的主要功能是“Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.”。

扩展截图

screenshot
screenshot

下载Recipe Filter扩展crx文件

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