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": "Easy Class Break (UCLA)",
"version": "0.4.7",
"description": "Find out the classes whose break is not enough to walk to the next class.",
"icons": {
"128": "icon.png"
},
"background": {
"scripts": [
"addressList.js",
".\/background\/distanceMat.js",
".\/background\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.my.ucla.edu\/ClassPlanner\/*"
],
"css": [
".\/content_scripts\/showTips.css"
],
"js": [
"addressList.js",
".\/content_scripts\/jquery-3.6.0.slim.min.js",
".\/content_scripts\/getClassInfo.js",
".\/content_scripts\/processClassInfo.js",
".\/content_scripts\/showTips.js",
".\/content_scripts\/contentScript.js"
]
}
],
"web_accessible_resources": [
".\/distanceMat.json"
],
"permissions": [
"storage"
],
"page_action": {
"default_icon": "icon.png",
"default_popup": ".\/popup\/popup.html"
},
"manifest_version": 2,
"content_security_policy": "default-src 'self' https:\/\/www.google-analytics.com; style-src 'self'; script-src 'self' https:\/\/www.google-analytics.com"
}