Jump To Recipe
Extracts only the recipe from any website or blog page, without any life stories or clutter.
Jump To Recipe क्या है?
Jump To Recipe Steven Lam द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extracts only the recipe from any website or blog page, without any life stories or clutter."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jump To Recipe एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Tired of scrolling endlessly to find the recipe on a lengthy website? Jump To Recipe will do the searching for you and display the recipe as a succinct popup complete with servings, time, ingredients and directions. No more having to dig through ridiculous stories about the chef's entire family history or mailing lists, this extension is active for your entire browsing session and pops up automatically whenever you visit a recipe page. You can also save your favourite recipes to the menu, so they’re easily accessible for the next time you want to bake or cook.
एक्सटेंशन की मूल जानकारी
नाम | Jump To Recipe |
ID | gmkblbmghnolinkhfmkidocbojcfiejm |
आधिकारिक URL | https://chromewebstore.google.com/detail/jump-to-recipe/gmkblbmghnolinkhfmkidocbojcfiejm |
विवरण | Extracts only the recipe from any website or blog page, without any life stories or clutter. |
फ़ाइल का आकार | 46.47 KB |
स्थापना संख्या | 4,224 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2022-02-17 |
प्रकाशन तिथि | 2022-02-17 |
रेटिंग | 4.96/5 कुल 24 रेटिंग्स |
डेवलपर | Steven Lam |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jump To Recipe", "description": "Extracts only the recipe from any website or blog page, without any life stories or clutter.", "homepage_url": "https:\/\/github.com\/steven-lm\/Jump-To-Recipe", "version": "1.0.0", "manifest_version": 3, "action": { "default_title": "Jump To Recipe", "default_popup": "menu.html" }, "content_scripts": [ { "run_at": "document_end", "js": [ "end.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] }, { "run_at": "document_idle", "js": [ "after.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles.css" ], "js": [ "thirdParty\/jquery-3.6.0.min.js", "main.js" ], "html": [ "popup.html" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "https:\/\/onlyrecipe.herokuapp.com\/*" ], "icons": { "16": "\/icons\/icon16.png", "48": "\/icons\/icon128.png", "128": "\/icons\/icon128.png" }, "web_accessible_resources": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "popup.html" ] } ] } |