Easy reload the current tab without any cached data. Works with iFrame too.
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": 2,
"name": "ReLoader",
"version": "1.0",
"author": "Alister Zhao",
"description": "Easy reload the current tab without any cached data. Works with iFrame too.",
"icons": {
"128": "128.png"
},
"permissions": [
"tabs",
"notifications",
"https://*/*",
"http://*/*"
],
"browser_action": {
"default_icon": "128.png",
"default_title": "Reload Tab"
},
"background": {
"scripts": [
"background.js"
]
}
}