A simple free utility for your browser that helps you decide how much to spend on your next transaction.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Ethereum Gas Price Extension",
"version": "2.0.3",
"description": "A simple free utility for your browser that helps you decide how much to spend on your next transaction.",
"manifest_version": 2,
"background": {
"page": "src/background.html",
"persistent": false
},
"icons": {
"16": "static/icon16.png",
"48": "static/icon48.png",
"128": "static/icon128.png"
},
"browser_action": {
"default_icon": "static/icon.png",
"default_title": "Ethereum Gas Price",
"default_popup": "src/popup.html"
},
"permissions": [
"alarms",
"storage"
],
"options_ui": {
"page": "src/options.html",
"open_in_tab": true
},
"applications": {
"gecko": {
"id": "{22635dc1-6dd0-4709-8c12-14c3003adb1f}",
"strict_min_version": "53.0"
}
}
}