Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Oct 04, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Tabs reloader ",
"version": "1.0.0",
"description": "Activate this extension to reload the selected tab, all tabs, or tabs to the left and right with one click ",
"action": {
"default_title": "Tabs reloader ",
"default_icon": {
"16": "Icon 16.png",
"32": "Icon 32.png",
"48": "Icon 48.png"
}
},
"icons": {
"64": "icon 64.png",
"128": "icon 128.png",
"2000": "Icon 2000.png"
},
"host_permissions": [
"*:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"notifications",
"contextMenus"
]
}