Reload tabs
Reload all of the current window's tabs
Hvad er Reload tabs?
Reload tabs er en Chrome-udvidelse udviklet af msskmlrn, og dens hovedfunktion er "Reload all of the current window's tabs".
Udvidelsesskærmbilleder
Download Reload tabs-udvidelses-CRX-fil
Download Reload tabs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Reload all of the current window's tabs by pressing the icon or using the Ctrl+Shift+E shortcut.
You can change the default shortcut to something else by opening the extensions page (chrome://extensions/) and clicking the keyboard shortcuts link in the bottom right corner of the page. From there, find the Reload tabs extension and enter a keyboard shortcut of your choosing.
The source code can be found at https://github.com/msskmlrn/reload-tabs. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | onncmmefekihehgnljddnkbbiplicomg |
| Officiel URL | https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg |
| Beskrivelse | Reload all of the current window's tabs |
| Filstørrelse | 6.75 KB |
| Antal Installationer | 31 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2014-06-06 |
| Udgivelsesdato | 2014-06-06 |
| Udvikler | msskmlrn |
| Betalingsmetode | free |
| Hjælpeside-URL | https://github.com/msskmlrn/reload-tabs |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Reload tabs",
"short_name": "Reload tabs",
"version": "1.0",
"description": "Reload all of the current window's tabs",
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"scripts": [
"reload.js"
],
"persistent": false
},
"commands": {
"reload-tabs": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Reload tabs"
}
},
"permissions": [
"tabs"
]
} | |