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", "description": "Notes for your browser", "version": "2.0.0", "manifest_version": 3, "name": "Sticky Notes", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "permissions": [ "contextMenus", "tabs", "storage", "scripting", "offscreen" ], "host_permissions": [ "http:\/\/localhost:3000\/*", "http:\/\/localhost:3008\/*", "<all_urls>" ], "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "<all_urls>" ], "js": [ "contentScript.bundle.js" ] } ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "assets\/sounds\/bubble.wav" ], "matches": [ "<all_urls>" ] } ] }