New Tab Shortcut

Customize chrome shortcut to open a new tab

ما هو New Tab Shortcut؟

New Tab Shortcut هو إضافة Chrome تم تطويرها بواسطة Stanley Guevara، والميزة الرئيسية لها هي "Customize chrome shortcut to open a new tab".

تحميل ملف CRX للإضافة New Tab Shortcut

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

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

                        Simple extension for opening new tab by keyboard shortcut.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

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

الاسم New Tab Shortcut New Tab Shortcut
ID ahnndmdalhingohpcbkfpipelneigkij
عنوان URL الرسمي https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij
الوصف Customize chrome shortcut to open a new tab
حجم الملف 3.16 KB
عدد التثبيتات 36
النسخة الحالية 1.0
آخر تحديث 2016-10-16
تاريخ النشر 2016-10-16
المطور Stanley Guevara
نوع الدفع free
موقع الإضافة https://github.com/stanleyguevara/chrome-new-tab-shortcut
عنوان صفحة المساعدة https://github.com/stanleyguevara/chrome-new-tab-shortcut
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to open a new tab",
    "commands": {
        "close-tab": {
            "suggested_key": {
                "default": "Alt+Z",
                "mac": "Ctrl+Z"
            },
            "description": "Open a new tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}