Inspect and view changes in Moodle addin 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,
"name": "Moodle addin",
"short_name": "Moodle addin",
"version": "1.2.0.0000",
"description": "Moodleをより使いやすくする拡張機能です。",
"icons": {
"16": "img/16.png",
"48": "img/48.png",
"128": "img/128.png"
},
"action": {
"defalt_icon": {
"16": "img/16.png"
},
"default_title": "Moodle addin",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://kadai-moodle.kagawa-u.ac.jp/*",
"*://lms-sp.itc.kagawa-u.ac.jp/*"
],
"js": [
"script.js"
]
}
]
}