Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Co to jest Recipe Filter?
Recipe Filter to rozszerzenie Chrome opracowane przez Seansoft, a jego główną funkcją jest „Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Recipe Filter
Pobierz pliki rozszerzeń Recipe Filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
Oficjalny URL | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
Opis | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
Rozmiar pliku | 12.64 KB |
Liczba instalacji | 56,805 |
Aktualna Wersja | 0.3 |
Ostatnia Aktualizacja | 2020-06-13 |
Data Publikacji | 2020-06-13 |
Ocena | 4.84/5 Łącznie 192 Oceny |
Deweloper | Seansoft |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/sean-public/RecipeFilter |
Adres URL Strony Pomocy | https://github.com/sean-public/RecipeFilter |
Obsługiwane Języki | 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" ] } ] } |