Inspect and view changes in DartConnect Stats Helper 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
{
"manifest_version": 3,
"name": "DartConnect Stats Helper",
"version": "1.1.1",
"description": "Automatically displays highest and lowest player averages on DartConnect.",
"icons": {
"16": "dist/icon-16x16.png",
"48": "dist/icon-48x48.png",
"128": "dist/icon-128x128.png",
"256": "dist/icon-256x256.png"
},
"action": {
"default_icon": "dist/icon.png",
"default_popup": "dist/popup.html"
},
"permissions": [
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "dartconnect@cute-softies.com"
}
},
"host_permissions": [
"https://tv.dartconnect.com/*"
],
"content_scripts": [
{
"matches": [
"https://tv.dartconnect.com/*"
],
"css": [
"dist/tailwind.css"
],
"js": [
"src/jquery-3.7.1.min.js",
"dist/script.js"
]
}
]
}