Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "NetMeter Web",
"version": "2.2.1",
"description": "Web Data Consumption Monitor Extension: Stay Informed About Site Bandwidth Usage",
"icons": {
"128": "public\/icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"public\/*",
"assets\/*",
"pages\/content\/netmeter-media-patch-worker.js"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"permissions": [
"storage",
"webRequest",
"tabs",
"scripting",
"alarms"
],
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"background": {
"service_worker": "background\/index.js",
"type": "module"
},
"action": {
"default_popup": "popup\/index.html",
"default_icon": "public\/icon-34.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"pages\/content\/netmeter-patcher.js"
],
"run_at": "document_start",
"all_frames": true,
"world": "MAIN"
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"<all_urls>"
],
"js": [
"content\/index.js"
],
"all_frames": true,
"run_at": "document_start"
}
]
}