DOTLAN ESI Radar

This extension reimplements the old 'radar' (location tracking) feature into DOTLAN using EVE's new ESI API.

Wat is DOTLAN ESI Radar?

DOTLAN ESI Radar is een Chrome-extensie ontwikkeld door kendall.masse, en de belangrijkste functie is "This extension reimplements the old 'radar' (location tracking) feature into DOTLAN using EVE's new ESI API.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie DOTLAN ESI Radar

Download DOTLAN ESI Radar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        To use simply install and login using the topbar on DOTLAN.

Current Features:
- Location Tracking
- Waypoint Management via right click menu in map

If something isn't working right please open an issue here: https://github.com/ArtificialQualia/DOTLAN-Radar-Chrome-Extension/issues

Changelog:
* 1.2.0:
  Fixed waypoints/destinations being broken due to unannounced CCP changes
  Fixes for non-English language users
  Updated chrome manifest to v3
* 1.1.1:
  Tracking no longer breaks/overwrites the 'Map Info Layer' setting you are using
* 1.1.0:
  Better support for multiple DOTLAN tabs open.
  Tracking state is tracked per-tab now, and manually navigating to a new page in a tab that is tracking will pause the tracking.
* 1.0.4:
  Add support for DOTLAN Dark themes coloring
* 1.0.3:
  Fix CORB errors on newer versions of Chrome
* 1.0.2:
  Update obsolete esi.tech.ccp.is url to esi.evetech.net
* 1.0.1:
  Fix for options showing up on multiple right clicks in succession
* 1.0:
  Added waypoints, first non-beta release
* 0.6:
  beta release, basic tracking functionality                    

Basisinformatie over de Extensie

Naam DOTLAN ESI Radar DOTLAN ESI Radar
ID gjdlibhgddgmjfapeiflcbjeobefnjnh
Officiële URL https://chromewebstore.google.com/detail/dotlan-esi-radar/gjdlibhgddgmjfapeiflcbjeobefnjnh
Beschrijving This extension reimplements the old 'radar' (location tracking) feature into DOTLAN using EVE's new ESI API.
Bestandsgrootte 60.36 KB
Aantal Installaties 568
Huidige Versie 1.2.0
Laatst Bijgewerkt 2022-07-28
Publicatiedatum 2019-06-07
Beoordeling 4.80/5 Totaal 5 Beoordelingen
Ontwikkelaar kendall.masse
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ArtificialQualia/DOTLAN-Radar-Chrome-Extension
Help Pagina-URL https://github.com/ArtificialQualia/DOTLAN-Radar-Chrome-Extension/issues
URL van de Privacybeleid Pagina https://github.com/ArtificialQualia/DOTLAN-Radar-Chrome-Extension/blob/master/PRIVACY_POLICY.md
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DOTLAN ESI Radar",
    "version": "1.2.0",
    "description": "This extension reimplements the old 'radar' (location tracking) feature into DOTLAN using EVE's new ESI API.",
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon16.png"
            ],
            "matches": [
                "*:\/\/evemaps.dotlan.net\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "app\/scripts\/background_api.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/evemaps.dotlan.net\/*"
            ],
            "css": [
                "app\/views\/topbar.css"
            ],
            "js": [
                "app\/scripts\/libraries\/vue.runtime.min.js",
                "app\/scripts\/libraries\/axios.min.js",
                "app\/scripts\/topbar.js",
                "app\/scripts\/tracker.js",
                "app\/scripts\/waypoints.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/esi.evetech.net\/*",
        "https:\/\/login.eveonline.com\/oauth\/*",
        "*:\/\/evemaps.dotlan.net\/*"
    ]
}