Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Cos'è Recipe Filter?
Recipe Filter è un'estensione di Chrome sviluppata da Seansoft, e la sua funzione principale è "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Recipe Filter
Scarica i file di estensione Recipe Filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
URL Ufficiale | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
Descrizione | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
Dimensione del File | 12.64 KB |
Conteggio Installazioni | 56,805 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2020-06-13 |
Data di Pubblicazione | 2020-06-13 |
Valutazione | 4.84/5 Totale 192 Valutazioni |
Sviluppatore | Seansoft |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/sean-public/RecipeFilter |
URL della Pagina di Aiuto | https://github.com/sean-public/RecipeFilter |
Lingue Supportate | 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" ] } ] } |