New Tab Shortcut

Customize chrome shortcut to open a new tab

Apa itu New Tab Shortcut?

New Tab Shortcut adalah ekstensi Chrome yang dikembangkan oleh Stanley Guevara, dan fitur utamanya adalah "Customize chrome shortcut to open a new tab".

Unduh Berkas CRX Ekstensi New Tab Shortcut

Unduh file ekstensi New Tab Shortcut dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Simple extension for opening new tab by keyboard shortcut.

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

Informasi Dasar Ekstensi

Nama New Tab Shortcut New Tab Shortcut
ID ahnndmdalhingohpcbkfpipelneigkij
URL Resmi https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij
Deskripsi Customize chrome shortcut to open a new tab
Ukuran File 3.16 KB
Jumlah Instalasi 36
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-10-16
Tanggal Publikasi 2016-10-16
Pengembang Stanley Guevara
Tipe Pembayaran free
Situs Ekstensi https://github.com/stanleyguevara/chrome-new-tab-shortcut
URL Halaman Bantuan https://github.com/stanleyguevara/chrome-new-tab-shortcut
Bahasa yang Didukung 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
    }
}