Pop out tabs to new window

Click the extension's toolbar button to pop out selected tab(s) to a new window.

ما هو Pop out tabs to new window؟

Pop out tabs to new window هو إضافة Chrome تم تطويرها بواسطة Ivan Novikov، والميزة الرئيسية لها هي "Click the extension's toolbar button to pop out selected tab(s) to a new window.".

تحميل ملف CRX للإضافة Pop out tabs to new window

قم بتنزيل ملفات الامتداد Pop out tabs to new window بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Pop out tabs to new window Pop out tabs to new window
ID lhnaddgiebpcecbcmfcjmlhinfpkkjii
عنوان URL الرسمي https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii
الوصف Click the extension's toolbar button to pop out selected tab(s) to a new window.
حجم الملف 3.38 KB
عدد التثبيتات 248
النسخة الحالية 1.1
آخر تحديث 2018-03-14
تاريخ النشر 2018-03-14
تقييم 5.00/5 مجموع تقييمات 3
المطور Ivan Novikov
نوع الدفع free
موقع الإضافة https://twitter.com/ivan7237d
اللغات المدعومة 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"
        }
    }
}