TabReadReminder

Reminds you to read open articles by recommending them once a day on your new tab.

O que é TabReadReminder?

TabReadReminder é uma extensão do Chrome desenvolvida por Perilla Labs, Inc, e sua principal característica é "Reminds you to read open articles by recommending them once a day on your new tab.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão TabReadReminder

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

                        Have you ever had hundreds of unread open tabs? We help you actually read them.

Use TabReadReminder to:
• Get reminded to read articles chosen from your open tabs daily.
• Mark articles as read or not read to keep track.                    

Informações Básicas da Extensão

Nome TabReadReminder TabReadReminder
ID feabkmfhdlhckilaibcpcdbighdfajho
URL Oficial https://chromewebstore.google.com/detail/tabreadreminder/feabkmfhdlhckilaibcpcdbighdfajho
Descrição Reminds you to read open articles by recommending them once a day on your new tab.
Tamanho do Arquivo 669 KB
Contagem de Instalações 19
Versão Atual 0.1.2
Última Atualização 2023-01-23
Data de Publicação 2022-12-13
Desenvolvedor Perilla Labs, Inc
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://dmitryd.notion.site/ShareAuth-Privacy-Policy-66e7763baaf845cbaa8250e59e53710c
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Reminds you to read open articles by recommending them once a day on your new tab.",
    "version": "0.1.2",
    "manifest_version": 3,
    "name": "TabReadReminder",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_icon": "book_extension34.png"
    },
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "icons": {
        "128": "book_extension128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "alarms",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "book_extension128.png",
                "book_extension34.png"
            ],
            "matches": []
        }
    ],
    "host_permissions": [
        "https:\/\/api.mixpanel.com\/"
    ]
}