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", "name": "Recipe Manager", "manifest_version": 2, "version": "1.0.1", "description": "Helps you manage your recipes, so you don't ever make the same bad thing twice!", "icons": { "16": "spoon16.png", "48": "spoon48.png", "128": "spoon128.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "<all_urls>", "tabs", "storage", "activeTab", "notifications" ], "browser_action": { "default_popup": "popup.html", "default_icon": "spoon.png" } }