Esportal Hop-in
Show an alert when a game is available for hop-in
What is Esportal Hop-in?
Esportal Hop-in is a Chrome extension developed by gustavps97, and its main feature is "Show an alert when a game is available for hop-in".
Extension Screenshots
Download Esportal Hop-in Extension CRX File
Download Esportal Hop-in extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Easily join on-going esportal ranked games with custom alerts
Do you want to contribute to this extension? The source code is available at GitHub:
https://github.com/GustavPS/esportal-hop-in
Any contributions are welcome :) Extension Basic Information
| Name | |
| ID | ciefpjjlahofahniiajpmpmhljehcndd |
| Official URL | https://chromewebstore.google.com/detail/esportal-hop-in/ciefpjjlahofahniiajpmpmhljehcndd |
| Description | Show an alert when a game is available for hop-in |
| File Size | 31.19 KB |
| Installation Count | 35 |
| Current Version | 0.0.5 |
| Last Updated | 2022-09-12 |
| Publish Date | 2022-02-27 |
| Rating | 5.00/5 Total 4 Ratings |
| Developer | gustavps97 |
| [email protected] | |
| Payment Type | free |
| Supported Languages | sv |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Esportal Hop-in",
"description": "Show an alert when a game is available for hop-in",
"version": "0.0.5",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"css": [
"styles.css"
],
"js": [
"content.js"
],
"matches": [
"https:\/\/esportal.com\/*"
]
}
],
"icons": {
"16": "images\/icon_16.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/icon_16.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
}
}
} | |