Simple Tab Switcher
A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
O que é Simple Tab Switcher?
Simple Tab Switcher é uma extensão do Chrome desenvolvida por JmQu, e sua principal característica é "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Simple Tab Switcher
Baixe arquivos de extensão Simple Tab Switcher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | jmihjpkeaeknejefhonkbgldenaplegj |
URL Oficial | https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj |
Descrição | A Chrome tab switcher which enables a shortcut to switch the current tab to latest one. |
Tamanho do Arquivo | 24.19 KB |
Contagem de Instalações | 62 |
Versão Atual | 0.2.1 |
Última Atualização | 2022-09-24 |
Data de Publicação | 2019-03-04 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | JmQu |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/SanCoder-Q/tab-switcher |
URL da Página de Ajuda | https://github.com/SanCoder-Q/tab-switcher |
Idiomas Suportados | 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" } |