Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Vad är Recipe Filter?
Recipe Filter är en Chrome-tillägg utvecklad av Seansoft, och dess huvudfunktion är "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".
Tilläggsskärmbilder
Ladda ner Recipe Filter-förlängningens CRX-fil
Ladda ner Recipe Filter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
Officiell webbadress | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
Beskrivning | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
Filstorlek | 12.64 KB |
Antal Installationer | 56,805 |
Aktuell Version | 0.3 |
Senast Uppdaterad | 2020-06-13 |
Publiceringsdatum | 2020-06-13 |
Betyg | 4.84/5 Totalt 192 Betyg |
Utvecklare | Seansoft |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sean-public/RecipeFilter |
Hjälpsida URL | https://github.com/sean-public/RecipeFilter |
Stödda Språk | 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" ] } ] } |