Inspect and view changes in Shortcuts for InternetGoSchool 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
{
"description": "Keyboard controls for Guo Juan's Internet Go School",
"manifest_version": 2,
"name": "Keyboard Control for Internet Go School",
"version": "0.10resigned1",
"homepage_url": "https://github.com/cr/IGSControl",
"icons": {
"48": "icon.svg"
},
"content_scripts": [
{
"matches": [
"https://internetgoschool.com/index.vhtml"
],
"js": [
"main.js"
]
},
{
"matches": [
"https://internetgoschool.com/lesson.vhtml"
],
"js": [
"lesson.js"
]
},
{
"matches": [
"https://internetgoschool.com/auth/problems/*"
],
"js": [
"problems.js"
]
},
{
"matches": [
"https://internetgoschool.com/auth/lectures/*"
],
"js": [
"lectures.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{4f5ffb01-bad8-464f-91df-0c6abef53444}"
}
}
}