TabReadReminder

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

¿Qué es TabReadReminder?

TabReadReminder es una extensión de Chrome desarrollada por Perilla Labs, Inc, y su función principal es "Reminds you to read open articles by recommending them once a day on your new tab.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión TabReadReminder

Descarga archivos de extensión TabReadReminder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre TabReadReminder TabReadReminder
ID feabkmfhdlhckilaibcpcdbighdfajho
URL Oficial https://chromewebstore.google.com/detail/tabreadreminder/feabkmfhdlhckilaibcpcdbighdfajho
Descripción Reminds you to read open articles by recommending them once a day on your new tab.
Tamaño del Archivo 669 KB
Cantidad de Instalaciones 19
Versión Actual 0.1.2
Última Actualización 2023-01-23
Fecha de Publicación 2022-12-13
Desarrollador Perilla Labs, Inc
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://dmitryd.notion.site/ShareAuth-Privacy-Policy-66e7763baaf845cbaa8250e59e53710c
Idiomas Soportados 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\/"
    ]
}