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": "Sticky Notes", "description": "Add sticky notes to any website, save them, and view them anytime!", "version": "0.3", "icons": { "128": "assets\/pin.png" }, "permissions": [ "storage", "activeTab", "scripting", "contextMenus" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background\/background.js" }, "action": { "default_popup": "popup\/popup.html", "default_icon": "assets\/pin.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ], "web_accessible_resources": [ { "resources": [ "pages\/installed.html" ], "matches": [ "<all_urls>" ] } ] }