TabReadReminder

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

Qu'est-ce que TabReadReminder ?

TabReadReminder est une extension Chrome développée par Perilla Labs, Inc, et sa fonction principale est "Reminds you to read open articles by recommending them once a day on your new tab.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TabReadReminder

Téléchargez les fichiers d'extension TabReadReminder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom TabReadReminder TabReadReminder
ID feabkmfhdlhckilaibcpcdbighdfajho
URL Officiel https://chromewebstore.google.com/detail/tabreadreminder/feabkmfhdlhckilaibcpcdbighdfajho
Description Reminds you to read open articles by recommending them once a day on your new tab.
Taille du Fichier 669 KB
Nombre d'Installations 19
Version Actuelle 0.1.2
Dernière Mise à Jour 2023-01-23
Date de Publication 2022-12-13
Développeur Perilla Labs, Inc
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://dmitryd.notion.site/ShareAuth-Privacy-Policy-66e7763baaf845cbaa8250e59e53710c
Langues Prises en Charge 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\/"
    ]
}