Making it easier to catch planes on the map.
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": "Map Logger by RadarAtlas",
"version": "0.0.3",
"action": {
"default_title": "Map Logger by RadarAtlas"
},
"description": "Making it easier to catch planes on the map.",
"content_scripts": [
{
"matches": [
"https://globe.adsbexchange.com/*",
"https://adsb.lol/*",
"https://globe.theairtraffic.com/*",
"https://globe.airplanes.live/*",
"https://globe.adsb.fi/*"
],
"js": [
"jquery-3.7.0.min.js",
"mutation.js"
],
"css": [
"styles.css"
]
}
]
}