DOTLAN ESI Radar

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

DOTLAN ESI Radar란 무엇입니까?

DOTLAN ESI Radar은(는) kendall.masse에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension reimplements the old 'radar' (location tracking) feature into DOTLAN using EVE's new ESI API."입니다.

확장 프로그램 스크린샷

screenshot

DOTLAN ESI Radar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 DOTLAN ESI Radar DOTLAN ESI Radar
ID gjdlibhgddgmjfapeiflcbjeobefnjnh
공식 URL https://chromewebstore.google.com/detail/dotlan-esi-radar/gjdlibhgddgmjfapeiflcbjeobefnjnh
설명 This extension reimplements the old 'radar' (location tracking) feature into DOTLAN using EVE's new ESI API.
파일 크기 60.36 KB
설치 횟수 568
현재 버전 1.2.0
최근 업데이트 2022-07-28
출시 날짜 2019-06-07
평점 4.80/5 총 5 개의 평점
개발자 kendall.masse
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ArtificialQualia/DOTLAN-Radar-Chrome-Extension
도움말 페이지 URL https://github.com/ArtificialQualia/DOTLAN-Radar-Chrome-Extension/issues
개인정보 보호 정책 페이지 URL https://github.com/ArtificialQualia/DOTLAN-Radar-Chrome-Extension/blob/master/PRIVACY_POLICY.md
지원되는 언어 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\/*"
    ]
}