'Nuff Tabs
Limit the number of open tabs. Automatically close previous tabs.
O que é 'Nuff Tabs?
'Nuff Tabs é uma extensão do Chrome desenvolvida por https://www.squobble.com, e sua principal característica é "Limit the number of open tabs. Automatically close previous tabs.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão 'Nuff Tabs
Baixe arquivos de extensão 'Nuff 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
Limit the number of open tabs. Tabs are automatically closed when you surpass the limit, based on a rule you can specify. Options allow to 1. set the tab limit 2. specify the discard rule 3. leave the pinned tabs untouched 4. show the current number of tabs in the icon The following discard rules are included: Either close the oldest tab, the newest tab (avoids auto-closing tabs), the least recently used tab, the least frequently used tab, or a random tab. Source code: https://github.com/steven2358/NuffTabs
Informações Básicas da Extensão
Nome | 'Nuff Tabs |
ID | kemeihccgedidlokcbfhdekcfojpjjmp |
URL Oficial | https://chromewebstore.google.com/detail/nuff-tabs/kemeihccgedidlokcbfhdekcfojpjjmp |
Descrição | Limit the number of open tabs. Automatically close previous tabs. |
Tamanho do Arquivo | 11.11 KB |
Contagem de Instalações | 975 |
Versão Atual | 0.5 |
Última Atualização | 2015-10-02 |
Data de Publicação | 2015-10-02 |
Classificação | 4.44/5 Total de 18 Avaliações |
Desenvolvedor | https://www.squobble.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/steven2358/NuffTabs |
URL da Página de Ajuda | https://github.com/steven2358/NuffTabs/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "'Nuff Tabs", "author": "Steven Van Vaerenbergh", "version": "0.5", "description": "Limit the number of open tabs. Automatically close previous tabs.", "permissions": [ "tabs" ], "icons": { "19": "i\/nufftabs19.png", "32": "i\/nufftabs32.png", "48": "i\/nufftabs48.png", "64": "i\/nufftabs64.png", "128": "i\/nufftabs128.png" }, "browser_action": { "default_name": "'Nuff Tabs", "default_icon": "i\/nufftabs19.png", "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "nufftabs.js" ] }, "options_page": "options.html" } |