関大LMSの課題をわかりやすく
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": "microLMS",
"description": "関大LMSの課題をわかりやすく",
"version": "2.0.0",
"icons": {
"16": "icon-16.png",
"24": "icon-24.png",
"48": "icon-48.png",
"96": "icon-96.png",
"128": "icon-128.png"
},
"action": {
"default_title": "microLMS",
"default_popup": "popup.html"
},
"permissions": [
"sidePanel",
"storage"
],
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": [
"*://kulms.tl.kansai-u.ac.jp/*"
],
"css": [
"content-scripts/content.css"
],
"js": [
"content-scripts/content.js"
]
}
]
}