Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Qu'est-ce que Pop out tabs to new window ?
Pop out tabs to new window est une extension Chrome développée par Ivan Novikov, et sa fonction principale est "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Télécharger le fichier CRX de l'extension Pop out tabs to new window
Téléchargez les fichiers d'extension Pop out tabs to new window 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
Default shortcut: Alt+P. Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs: — To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key. — To select a range of tabs, click tab handles while holding down the Shift key. Source code: https://github.com/ivan7237d/pop-out-tabs
Informations de Base sur l'Extension
Nom | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
URL Officiel | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Description | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
Taille du Fichier | 3.38 KB |
Nombre d'Installations | 248 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2018-03-14 |
Date de Publication | 2018-03-14 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Ivan Novikov |
Type de Paiement | free |
Site Web de l'Extension | https://twitter.com/ivan7237d |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pop out tabs to new window", "version": "1.1", "description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "offline_enabled": true, "browser_action": { "default_title": "Pop out tabs to new window" }, "commands": { "popout_action": { "suggested_key": { "default": "Alt+P" }, "description": "Pop out tabs to new window" } } } |