Recent-tabs

Very fast switching tabs

O que é Recent-tabs?

Recent-tabs é uma extensão do Chrome desenvolvida por sergcen17, e sua principal característica é "Very fast switching tabs".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Recent-tabs

Baixe arquivos de extensão Recent-tabs 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

                        # Recent-tabs
Fast switch between tabs
source code: https://github.com/sergcen/recent-tabs

features:
* Search by opened tabs
* Search by bookmarks
* Search by history
* show all opened tabs in popup, sorted by last usage
* 2-step search in browser history (if matched tabs count < 5)

Browsers: Chrome, YandexBrowser

## Hotkeys
CMD + E - open tabs popup (default for MAC, for Windows users set it manually)
SHIFT + arrowRight - close selected tab
SHIFT + arrowDown - closes everything tabs to the bottom, including selected
CMD + C - copy URL of selected tab (CTRL + C for windows users)                    

Informações Básicas da Extensão

Nome Recent-tabs Recent-tabs
ID aamlejepmlabpimifejjnmkjcolooifi
URL Oficial https://chromewebstore.google.com/detail/recent-tabs/aamlejepmlabpimifejjnmkjcolooifi
Descrição Very fast switching tabs
Tamanho do Arquivo 116 KB
Contagem de Instalações 99
Versão Atual 1.5
Última Atualização 2020-05-06
Data de Publicação 2020-05-05
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor sergcen17
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.5",
    "manifest_version": 2,
    "short_name": "__MSG_appShortName__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "options_ui": {
        "page": "pages\/settings.html",
        "open_in_tab": false
    },
    "commands": {
        "_execute_browser_action": [],
        "move-tabs-new-window": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "Move tabs to new window"
        }
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "history",
        "tabs",
        "storage",
        "bookmarks"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}