Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Stickr - Sticky notes for Web", "description": "Sticky notes for websites. Stick anywhere on the page!", "version": "2.0.2", "permissions": [ "scripting", "storage", "unlimitedStorage", "contextMenus", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "*:\/\/*\/*" ], "action": { "default_popup": "popup.html" }, "icons": { "16": "icons\/logo.png", "32": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "background": { "service_worker": "background.js" }, "commands": { "new_note": { "suggested_key": { "default": "Alt+N", "mac": "Alt+N" }, "description": "Create a new note" }, "toggle_collapse": { "suggested_key": { "default": "Alt+Shift+M", "mac": "Alt+Shift+M" }, "description": "Expand \/ Collapse all notes" }, "toggle_hide": { "suggested_key": { "default": "Alt+Shift+H", "mac": "Alt+Shift+H" }, "description": "Hide \/ Show all notes" } }, "web_accessible_resources": [ { "matches": [ "<all_urls>" ], "resources": [ "icons\/*", "note.html", "index.js", "db.js" ] } ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "db.js", "noteFunctions.js" ] } ] }