RTT Mapper

Adds mapping functionality to RealtimeTrains.co.uk

什麼是RTT Mapper?

RTT Mapper是由Alex van Herwijnen開發的Chrome擴展程式,該擴展的主要功能是“Adds mapping functionality to RealtimeTrains.co.uk”。

擴展截圖

screenshot
screenshot

下載RTT Mapper擴展crx文件

下載RTT Mapper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension adds OpenStreetMap based functionality to the Realtime Trains website (http://www.realtimetrains.co.uk/).

Features:
- Visualises the route taken by a train on a map
- (Part) cancelled routes are shown in grey
- The last known position of a train is displayed as a marker (if available)
- Route length can be seen by clicking the 'info' button in the bottom right corner of the map

New in version 0.6.0:
- Updated to Manifest v3
- Added display of public calls (circles) and non-public calls (triangles)
- Bit of data cleansing for some obscure routing points

Please note that this extension is not developed by the makers of Realtime Trains and is not affiliated with swlines ltd.                    

擴展基本資訊

名稱 RTT Mapper RTT Mapper
ID ldmlnppgmephampfjfihgkimanednflo
官方網址 https://chromewebstore.google.com/detail/rtt-mapper/ldmlnppgmephampfjfihgkimanednflo
簡介 Adds mapping functionality to RealtimeTrains.co.uk
檔案大小 1.04 MB
安裝次數 386
目前版本 0.6.0.0
更新時間 2024-02-05
上架時間 2019-11-06
評分 5.00/5 共 1 次評分
開發者 Alex van Herwijnen
電子郵箱 [email protected]
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RTT Mapper",
    "version": "0.6.0.0",
    "description": "Adds mapping functionality to RealtimeTrains.co.uk",
    "manifest_version": 3,
    "permissions": [],
    "icons": {
        "16": "img\/icon\/16x16.png",
        "48": "img\/icon\/48x48.png",
        "128": "img\/icon\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.realtimetrains.co.uk\/service\/*",
                "https:\/\/realtimetrains.co.uk\/service\/*",
                "http:\/\/www.realtimetrains.co.uk\/service\/*",
                "http:\/\/realtimetrains.co.uk\/service\/*"
            ],
            "css": [
                "ol.css",
                "rttMapper.css"
            ],
            "js": [
                "ol.js",
                "rttMapper.js",
                "mapPage.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.realtimetrains.co.uk\/search\/*",
                "https:\/\/realtimetrains.co.uk\/search\/*",
                "http:\/\/www.realtimetrains.co.uk\/search\/*",
                "http:\/\/realtimetrains.co.uk\/search\/*"
            ],
            "css": [
                "ol.css",
                "rttMapper.css"
            ],
            "js": [
                "ol.js",
                "rttMapper.js",
                "searchPage.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "crs.json",
                "tiploc.json",
                "img\/*.*"
            ],
            "matches": [
                "https:\/\/www.realtimetrains.co.uk\/*",
                "https:\/\/realtimetrains.co.uk\/*"
            ]
        }
    ]
}