Reload All Tabs
Reload all tabs
What is Reload All Tabs?
Reload All Tabs is a Chrome extension developed by chienwen, and its main feature is "Reload all tabs".
Extension Screenshots
Download Reload All Tabs Extension CRX File
Download Reload All Tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Click the "R" button to reload all tabs. Extension Basic Information
| Name | |
| ID | egkmbhbhbdlbblhkcgnmdiffmjklhpej |
| Official URL | https://chrome.google.com/webstore/detail/reload-all-tabs/egkmbhbhbdlbblhkcgnmdiffmjklhpej |
| Description | Reload all tabs |
| File Size | 17.41 KB |
| Installation Count | 70 |
| Current Version | 1.0 |
| Last Updated | 2014-01-21 |
| Publish Date | 2014-01-21 |
| Rating | 2.67/5 Total 3 Ratings |
| Developer | chienwen |
| [email protected] | |
| Payment Type | free |
| Supported Languages | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reload All Tabs",
"description": "Reload all tabs",
"version": "1.0",
"permissions": [
"tabs"
],
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Reload all tabs",
"default_icon": {
"19": "images\/reloadall-19.png",
"38": "images\/reloadall-38.png"
}
},
"icons": {
"16": "images\/reloadall-16.png",
"48": "images\/reloadall-48.png",
"128": "images\/reloadall-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"skin.js"
]
}
],
"manifest_version": 2
} | |