Inspect and view changes in Reload Bar in Address Bar 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
{
"manifest_version": 2,
"name": "Reload Bar in Address Bar",
"version": "1.9",
"author": "Peder Lång Skeidsvoll",
"homepage_url": "http://truben.no",
"description": "Moves the reload progress bar from the tab area to the address bar. It provides a cleaner, less cluttered interface while keeping the reload progress visible at all times",
"applications": {
"gecko": {
"strict_min_version": "72.0",
"id": "{1c0ae897-051f-4875-9a8c-97d02d6128ef}"
}
},
"icons": {
"48": "icons/refresh-48.svg"
},
"permissions": [
"activeTab",
"tabs",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "settings/options.html"
},
"page_action": {
"default_icon": "icons/refresh-16-light.svg",
"default_title": "Reload page",
"browser_style": true
}
}