Inspect and view changes in Cloud Academy source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"version": "1.0.4",
"short_name": "Cloud Academy",
"name": "Cloud Academy",
"description": "Instantly search and access the best content offered by Cloud Academy based on the Cloud Service Provider you are currently using.",
"action": {
"default_title": "Cloud Academy"
},
"content_scripts": [
{
"matches": [
"https://*.console.aws.amazon.com/*"
],
"js": [
"contentScript/classes/search-configuration.class.js",
"contentScript/classes/search-result.class.js",
"contentScript/api.js",
"contentScript/constants.js",
"contentScript/actions.js",
"contentScript/views.js",
"contentScript/index.js"
],
"css": [
"contentScript/styles/font.css",
"contentScript/styles/index.css"
]
}
],
"icons": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"background": {
"service_worker": "workers/service_worker.js"
},
"host_permissions": [
"https://cloudacademy.com/*",
"https://search.cloudacademy.com/*"
],
"web_accessible_resources": [
{
"resources": [
"assets/*"
],
"matches": [
"https://*.console.aws.amazon.com/*"
]
}
]
}