Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Recipe Jump", "description": "Automatically jumps the recipe card to the top of the page on recipe sites", "version": "1.1", "icons": { "16": "images\/recipejumpicon16.png", "38": "images\/recipejumpicon32.png", "48": "images\/recipejumpicon48.png", "128": "images\/recipejumpicon128.png" }, "permissions": [ "storage", "scripting", "activeTab", "sidePanel" ], "background": { "service_worker": "background_script.js" }, "action": { "default_title": "Click to open panel" }, "side_panel": { "default_path": "panel.html" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "script.js" ], "run_at": "document_end" } ] }