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, "version": "1.0.0", "name": "Cool Mango", "description": "a browser extension to improve Mango Canvas of CMU for Teacher and TA", "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Cool Mango CMU", "default_icon": "images\/mango-32.png", "default_popup": "index.html" }, "icons": { "16": "images\/mango-16.png", "32": "images\/mango-32.png", "48": "images\/mango-48.png", "64": "images\/mango-64.png", "128": "images\/mango-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/mango-cmu.instructure.com\/*" ], "js": [ "content_script.js" ] } ], "web_accessible_resources": [ { "matches": [ "<all_urls>" ], "resources": [ "**\/*", "*" ], "use_dynamic_url": true } ] }