Reload tabs
Reload all of the current window's tabs
Qu'est-ce que Reload tabs ?
Reload tabs est une extension Chrome développée par msskmlrn, et sa fonction principale est "Reload all of the current window's tabs".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Reload tabs
Téléchargez les fichiers d'extension Reload tabs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Reload tabs |
ID | onncmmefekihehgnljddnkbbiplicomg |
URL Officiel | https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg |
Description | Reload all of the current window's tabs |
Taille du Fichier | 6.75 KB |
Nombre d'Installations | 31 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-06-06 |
Date de Publication | 2014-06-06 |
Développeur | msskmlrn |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/msskmlrn/reload-tabs |
Langues Prises en Charge | 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" ] } |