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": "Gocleary org info", "version": "0.1.1", "description": "Basic Chrome Extension to see org info inside google calendar via right click context menu", "icons": { "16": "icons\/cleary-16.png", "32": "icons\/cleary-32.png", "48": "icons\/cleary-48.png", "128": "icons\/cleary-128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Org info", "default_popup": "popup.html" }, "permissions": [ "contextMenus", "identity", "identity.email", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*", "https:\/\/mail.google.com\/*", "https:\/\/*.gocleary.com\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] }