Inspect and view changes in EGU Handicap score analyzer 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
{
"name": "EGU Handicap score analyzer",
"description": "Analyses EGU handicap records and calculates your best and average scores for each hole, tee and course you've played",
"version": "0.4",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https://members.whsplatform.englandgolf.org/*"
],
"js": [
"browser-polyfill.min.js",
"bigredbutton.js",
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"type": "module"
},
"permissions": [
"activeTab"
],
"host_permissions": [
"*://members.whsplatform.englandgolf.org/*"
],
"action": {},
"browser_specific_settings": {
"gecko": {
"id": "{79F064A9-7660-4D50-8456-56964A66EBA3}",
"strict_min_version": "109.0"
}
},
"icons": {
"16": "/images/egu-analyzer16.png",
"32": "/images/egu-analyzer32.png",
"48": "/images/egu-analyzer48.png",
"128": "/images/egu-analyzer128.png"
}
}