Inspect and view changes in Ticket Tracker - Belarusian Railway source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Ticket Tracker - Belarusian Railway",
"version": "1.0",
"description": "Автоматическое отслеживание доступности билетов на поезда Белорусской железной дороги (БЖД).",
"permissions": [
"storage",
"alarms",
"notifications",
"activeTab"
],
"content_scripts": [
{
"matches": [
"https://pass.rw.by/ru/route/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "dist/background.bundle.js"
},
"icons": {
"48": "icon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}
}