PowerTab

Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.

ما هو PowerTab؟

PowerTab هو إضافة Chrome تم تطويرها بواسطة Insane، والميزة الرئيسية لها هي "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة PowerTab

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

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

                        Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.                    

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

الاسم PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
عنوان URL الرسمي https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
الوصف Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
حجم الملف 20.13 KB
عدد التثبيتات 34
النسخة الحالية 1.0
آخر تحديث 2013-09-16
تاريخ النشر 2013-09-16
تقييم 5.00/5 مجموع تقييمات 1
المطور Insane
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PowerTab",
    "description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.",
    "version": "1.0",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "clipboardWrite",
        "tabs"
    ],
    "icons": {
        "16": "icon16x16.png",
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "browser_action": {
        "default_icon": "icon16x16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ]
}