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开发的Chrome扩展程序,该扩展的主要功能是“Extracts only the recipe from any website or blog page, without any life stories or clutter.”。
扩展截图
下载Jump To Recipe扩展crx文件
下载Jump To Recipe扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |