Adds a dedicated reload button to Firefox. Icons made by Lucy G from www.flaticon.com
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Adds a dedicated reload button to Firefox. Icons made by Lucy G from www.flaticon.com",
"manifest_version": 2,
"name": "Ready to Reload",
"version": "0.2resigned1",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"64": "icons/icon-64.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{3018b536-d0ad-4571-befe-887e2ad0fd47}"
}
}
}