Popout

A simple extension that allows tabs to be opened in a separate minimal window.

Qu'est-ce que Popout ?

Popout est une extension Chrome développée par Space City Software, L.L.C., et sa fonction principale est "A simple extension that allows tabs to be opened in a separate minimal window.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Popout

Téléchargez les fichiers d'extension Popout 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

                        Popout is a simple extension that allows tabs and web apps to be opened in a separate window with minimal controls. This is different from dragging tabs to a new window because Popup windows do not have to tab view, the address bar, or any buttons. This saves screen space and allows easier navigation to commonly used website and apps.                    

Informations de Base sur l'Extension

Nom Popout Popout
ID nejkhdlfjifmhomnedomededpaeohcmi
URL Officiel https://chromewebstore.google.com/detail/popout/nejkhdlfjifmhomnedomededpaeohcmi
Description A simple extension that allows tabs to be opened in a separate minimal window.
Taille du Fichier 22.05 KB
Nombre d'Installations 3,082
Version Actuelle 2.1
Dernière Mise à Jour 2022-03-28
Date de Publication 2013-08-15
Évaluation 4.32/5 Total 25 Évaluations
Développeur Space City Software, L.L.C.
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/chrisg32/Popout
URL de la Page d'Aide https://github.com/chrisg32/Popout/issues
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Popout",
    "description": "A simple extension that allows tabs to be opened in a separate minimal window.",
    "version": "2.1",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_title": "Popout to external window.",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "96": "icons\/icon96.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "toggleIcon.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}