Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Co je Recipe Filter?
Recipe Filter je rozšíření Chrome vyvinuté Seansoft, a jeho hlavní funkcí je „Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Recipe Filter
Stáhněte si soubory rozšíření Recipe Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
Oficiální URL | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
Popis | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
Velikost souboru | 12.64 KB |
Počet instalací | 56,805 |
Aktuální Verze | 0.3 |
Poslední Aktualizace | 2020-06-13 |
Datum Vydání | 2020-06-13 |
Hodnocení | 4.84/5 Celkem 192 Hodnocení |
Vývojář | Seansoft |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/sean-public/RecipeFilter |
URL Stránky Nápovědy | https://github.com/sean-public/RecipeFilter |
Podporované Jazyky | 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" ] } ] } |