Reload All Tabs
This extension reloads all tabs in the active window.
Vad är Reload All Tabs?
Reload All Tabs är en Chrome-tillägg utvecklad av matthewlberg, och dess huvudfunktion är "This extension reloads all tabs in the active window.".
Tilläggsskärmbilder
Ladda ner Reload All Tabs-förlängningens CRX-fil
Ladda ner Reload All Tabs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension allows you to refresh all tabs with a simple click of a button. You can also use the keyboard shortcut Alt + Shift + R to reload all tabs. Grundläggande Information om Tillägg
| Namn | |
| ID | lgpdljdpanfecnpindkbnikegohoobci |
| Officiell webbadress | https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci |
| Beskrivning | This extension reloads all tabs in the active window. |
| Filstorlek | 4.38 KB |
| Antal Installationer | 46,699 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2014-01-16 |
| Publiceringsdatum | 2014-01-16 |
| Betyg | 4.47/5 Totalt 58 Betyg |
| Utvecklare | matthewlberg |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Reload All Tabs",
"description": "This extension reloads all tabs in the active window.",
"version": "1.0",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Reload all tabs"
}
},
"permissions": [
"tabs",
"background"
]
} | |