Tabalanche
An extension to stash and snapshot groups of tabs
O que é Tabalanche?
Tabalanche é uma extensão do Chrome desenvolvida por https://tabalanche.com, e sua principal característica é "An extension to stash and snapshot groups of tabs".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tabalanche
Baixe arquivos de extensão Tabalanche 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
Tabalanche is an extension that lets you stash away tabs for pages that you might want to revisit later, but are cluttering up your window right now. Unlike other similar extensions, Tabalanche stays quick and smooth, even when you save hundreds of tabs a week.
Informações Básicas da Extensão
Nome | Tabalanche |
ID | bmdmojejipbodfjbnennbnakhpboaoje |
URL Oficial | https://chromewebstore.google.com/detail/tabalanche/bmdmojejipbodfjbnennbnakhpboaoje |
Descrição | An extension to stash and snapshot groups of tabs |
Tamanho do Arquivo | 627 KB |
Contagem de Instalações | 419 |
Versão Atual | 1.1.0 |
Última Atualização | 2015-12-06 |
Data de Publicação | 2015-12-06 |
Classificação | 3.90/5 Total de 10 Avaliações |
Desenvolvedor | https://tabalanche.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.tabalanche.com/ |
URL da Página de Ajuda | https://github.com/tabalanche/tabalanche-extension/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tabalanche", "version": "1.1.0", "icons": { "16": "images\/tabalanche-box-16px.png", "48": "images\/tabalanche-box-48px.png", "128": "images\/tabalanche-box-128px-20pxborder.png" }, "description": "An extension to stash and snapshot groups of tabs", "browser_action": { "default_icon": { "19": "images\/tabalanche-box-19px.png", "38": "images\/tabalanche-box-38px.png" }, "default_title": "Tabalanche", "default_popup": "popup.html" }, "author": "Stuart P. Bentley", "background": { "scripts": [ "vendor\/pouchdb-5.0.0.js", "scripts\/tabalanche.js", "chrome\/event-page.js" ], "persistent": false }, "commands": { "stashThisTab": { "description": "Stash active tab" }, "stashAllTabs": { "description": "Stash all tabs in window" }, "stashOtherTabs": { "description": "Stash other tabs in window" }, "stashTabsToTheRight": { "description": "Stash tabs to the right" }, "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+T" } } }, "homepage_url": "https:\/\/www.tabalanche.com\/", "incognito": "split", "options_ui": { "page": "chrome\/options.html", "chrome_style": true }, "permissions": [ "tabs", "storage", "chrome:\/\/favicon\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |