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": "Sticky Notes", "version": "2.0.1", "description": "Sticky Notes", "manifest_version": 3, "permissions": [ "activeTab", "storage", "scripting", "contextMenus" ], "author": "guardian", "background": { "service_worker": "background.js" }, "action": { "default_title": "StickyNotes" }, "icons": { "48": "icons\/48x48.png", "64": "icons\/64x64.png", "128": "icons\/128x128.png" }, "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'" }, "web_accessible_resources": [ { "resources": [ "*.html", "*.css", "*.js", "\/icons\/*.png" ], "matches": [ "<all_urls>" ] } ], "content_scripts": [ { "js": [ "StickyNotes.js" ], "matches": [ "<all_urls>" ], "run_at": "document_end" } ] }