Now You (Don't) See Me

This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.

O que é Now You (Don't) See Me?

Now You (Don't) See Me é uma extensão do Chrome desenvolvida por swissashley, e sua principal característica é "This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Now You (Don't) See Me

Baixe arquivos de extensão Now You (Don't) See Me 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

                        Sometimes I don't feel comfortable letting people see the content I am currently browsing when they passing by. Whenever you want to hide all of your tabs,this Chrome extension will help you to close all the tabs, save them into a temporary bookmark folder, and restore them later with one button.

With this extension, users will be able to:

- [ ] Hide ( & bookmark) all the tabs with one click.
- [ ] Restore ( & remove the temporary bookmarks) all the tabs with one click.
- [ ] Use Hotkey to hide & restore.
        "windows": "Ctrl+Shift+A",
        "mac": "Command+Shift+A",
        "chromeos": "Ctrl+Shift+A",
        "linux": "Ctrl+Shift+A"
- [ ] Open your preset homepage when hiding all the tabs.                    

Informações Básicas da Extensão

Nome Now You (Don't) See Me Now You (Don't) See Me
ID chbfbamopjjdfodhafkjhpbolcpnijio
URL Oficial https://chromewebstore.google.com/detail/now-you-dont-see-me/chbfbamopjjdfodhafkjhpbolcpnijio
Descrição This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.
Tamanho do Arquivo 57.24 KB
Contagem de Instalações 433
Versão Atual 1.1
Última Atualização 2016-09-29
Data de Publicação 2016-09-29
Classificação 5.00/5 Total de 17 Avaliações
Desenvolvedor swissashley
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/swissashley/chrome-ext-now-you-dont-see-me
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Now You (Don't) See Me",
    "description": "This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "eye_orange.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+A",
                "mac": "Command+Shift+A",
                "chromeos": "Ctrl+Shift+A",
                "linux": "Ctrl+Shift+A"
            }
        }
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "bookmarks",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}