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
Eメール [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"
            ]
        }
    ]
}