Inspect and view changes in WAZE Leaderboard Improve 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": "WAZE Leaderboard Improve",
"version": "0.4",
"description": "Melhorias na tabela de Ranking do Waze",
"icons": {
"48": "128px.png",
"128": "128px.png"
},
"content_scripts": [
{
"matches": [
"https://*.waze.com/*leaderboard*"
],
"js": [
"leaderboard.js"
],
"run_at": "document_idle"
}
],
"host_permissions": [
"https://www.waze.com/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "WAZE Leaderboard"
}
}