Tab Snooze

Snooze tabs to open at a specific time

O que é Tab Snooze?

Tab Snooze é uma extensão do Chrome desenvolvida por Ramkumar K R, e sua principal característica é "Snooze tabs to open at a specific time".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tab Snooze

Baixe arquivos de extensão Tab Snooze 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

                        Snooze tabs to open at a specific time in the future.
Ex: Open this website after 4 hours.

- Click on the icon in the toolbar and select the time when you want to be reminded for the link the current tab.
- A notification is shown when a tab is snoozed.
- Clicking on the manage snoozed tabs button in the toolbar popup will show a list of links which are snoozed and a button to remove them.
- The same list can also be accessed from the sidebar.
- When the snoozed time of a tab is up, the tab is opened and a notification is shown.
- Tabs which were in incognito when snoozed will be opened in an incognito window when the time is up
- Normal tabs which were pinned when snoozed will be pinned when the time is up


Some drawbacks
- Tabs will always be opened in the background.
- Snoozed incognito tabs will always open in a new incognito window even if an incognito window is already present.
- A tab which is pinned in incognito and snoozed will not respect the tab pinned status.                    

Informações Básicas da Extensão

Nome Tab Snooze Tab Snooze
ID palmbjlffnlodcoeibhidnpflgeehndh
URL Oficial https://chromewebstore.google.com/detail/tab-snooze/palmbjlffnlodcoeibhidnpflgeehndh
Descrição Snooze tabs to open at a specific time
Tamanho do Arquivo 72.32 KB
Contagem de Instalações 230
Versão Atual 0.1.5
Última Atualização 2018-05-02
Data de Publicação 2018-05-02
Classificação 3.29/5 Total de 7 Avaliações
Desenvolvedor Ramkumar K R
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Snooze",
    "version": "0.1.5",
    "author": "Ramkumar K R",
    "description": "Snooze tabs to open at a specific time",
    "permissions": [
        "tabs",
        "notifications",
        "alarms",
        "storage"
    ],
    "browser_action": {
        "default_icon": "resources\/icon.png",
        "default_title": "Snooze",
        "default_popup": "popup\/index.html",
        "browser_style": true
    },
    "background": {
        "scripts": [
            "js\/browser-polyfill.min.js",
            "js\/background.js"
        ]
    },
    "icons": {
        "48": "resources\/icon.png"
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    }
}