Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Was ist Recipe Filter?
Recipe Filter ist eine Chrome-Erweiterung, die von Seansoft entwickelt wurde, und ihr Hauptmerkmal ist "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".
Erweiterungsscreenshots
Recipe Filter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Recipe Filter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
Offizielle URL | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
Beschreibung | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
Dateigröße | 12.64 KB |
Installationsanzahl | 56,805 |
Aktuelle Version | 0.3 |
Letztes Update | 2020-06-13 |
Veröffentlichungsdatum | 2020-06-13 |
Bewertung | 4.84/5 Insgesamt 192 Bewertungen |
Entwickler | Seansoft |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sean-public/RecipeFilter |
Hilfeseite URL | https://github.com/sean-public/RecipeFilter |
Unterstützte Sprachen | 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" ] } ] } |