Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Wat is Recipe Filter?
Recipe Filter is een Chrome-extensie ontwikkeld door Seansoft, en de belangrijkste functie is "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".
Extensie Screenshots
Download het CRX-bestand van de extensie Recipe Filter
Download Recipe Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
Officiële URL | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
Beschrijving | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
Bestandsgrootte | 12.64 KB |
Aantal Installaties | 56,805 |
Huidige Versie | 0.3 |
Laatst Bijgewerkt | 2020-06-13 |
Publicatiedatum | 2020-06-13 |
Beoordeling | 4.84/5 Totaal 192 Beoordelingen |
Ontwikkelaar | Seansoft |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/sean-public/RecipeFilter |
Help Pagina-URL | https://github.com/sean-public/RecipeFilter |
Ondersteunde Talen | 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" ] } ] } |