RTT Mapper
Adds mapping functionality to RealtimeTrains.co.uk
RTT Mapperคืออะไร?
RTT Mapper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex van Herwijnen และคุณลักษณะหลักของมันคือ "Adds mapping functionality to RealtimeTrains.co.uk"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RTT Mapper
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ldmlnppgmephampfjfihgkimanednflo |
URL อย่างเป็นทางการ | 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\/*" ] } ] } |