Extension version of legacygo.lciteam.club.
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",
"name": "LCHS Go (Legacy)",
"version": "1.11",
"description": "Extension version of legacygo.lciteam.club.",
"browser_action": {
"default_popup": "popup.html"
},
"manifest_version": 2,
"icons": {
"16": "spartan_16.png",
"48": "spartan_48.png",
"128": "spartan_128.png"
},
"permissions": [
"https://legacygo.lciteam.club/*",
"alarms"
],
"content_scripts": [
{
"matches": [
"https://legacygo.lciteam.club/home/?utm_source=extension_badge"
],
"js": [
"getTime.js"
],
"all_frames": true
},
{
"matches": [
"https://legacygo.lciteam.club/home/?utm_source=extension"
],
"js": [
"newTab.js"
],
"all_frames": true
},
{
"matches": [
"https://legacygo.lciteam.club/*"
],
"js": [
"contentScript.js"
],
"all_frames": true
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"options_page": "options.html"
}