Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Recipe Filter क्या है?
Recipe Filter Seansoft द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Recipe Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
आधिकारिक URL | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
विवरण | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
फ़ाइल का आकार | 12.64 KB |
स्थापना संख्या | 56,805 |
वर्तमान संस्करण | 0.3 |
अंतिम अपडेट | 2020-06-13 |
प्रकाशन तिथि | 2020-06-13 |
रेटिंग | 4.84/5 कुल 192 रेटिंग्स |
डेवलपर | Seansoft |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/sean-public/RecipeFilter |
सहायता पृष्ठ URL | https://github.com/sean-public/RecipeFilter |
समर्थित भाषाएँ | 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" ] } ] } |