Simple Tab Switcher
A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
Apa itu Simple Tab Switcher?
Simple Tab Switcher adalah ekstensi Chrome yang dikembangkan oleh JmQu, dan fitur utamanya adalah "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Simple Tab Switcher
Unduh file ekstensi Simple Tab Switcher 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
A FREE and SIMPLE tab switcher which enables a shortcut to switch the current tab to previous one. In addition, an extra shortcut to switch the current tab across different windows is also available. - The default shortcut to switch tabs is [Alt + q] (Option + q) on MacOs. - The default shortcut to switch windows is [Alt + w] (Option + w) on MacOs. *P.S.* You can change it through the *chrome://extensions/shortcuts*. It is open source at https://github.com/SanCoder-Q/tab-switcher
Informasi Dasar Ekstensi
Nama | |
ID | jmihjpkeaeknejefhonkbgldenaplegj |
URL Resmi | https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj |
Deskripsi | A Chrome tab switcher which enables a shortcut to switch the current tab to latest one. |
Ukuran File | 24.19 KB |
Jumlah Instalasi | 62 |
Versi Saat Ini | 0.2.1 |
Terakhir Diperbarui | 2022-09-24 |
Tanggal Publikasi | 2019-03-04 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | JmQu |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/SanCoder-Q/tab-switcher |
URL Halaman Bantuan | https://github.com/SanCoder-Q/tab-switcher |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Tab Switcher", "description": "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.", "version": "0.2.1", "icons": { "16": "resources\/90.png", "48": "resources\/90.png", "128": "resources\/128.png" }, "browser_action": { "default_icon": { "16": "resources\/90.png", "48": "resources\/90.png", "128": "resources\/128.png" } }, "background": { "scripts": [ "bundle.min.js" ] }, "commands": { "switchTab": { "suggested_key": { "default": "Alt+Q" }, "description": "Switch to recent tab" }, "moveTabCrossWindow": { "suggested_key": { "default": "Alt+W" }, "description": "Move current tab to next window" } }, "permissions": [ "storage", "commands", "tabs" ], "content_security_policy": "script-src 'self'; object-src 'self'", "homepage_url": "https:\/\/github.com\/SanCoder-Q\/tab-switcher" } |