TabReadReminder

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

Co je TabReadReminder?

TabReadReminder je rozšíření Chrome vyvinuté Perilla Labs, Inc, a jeho hlavní funkcí je „Reminds you to read open articles by recommending them once a day on your new tab.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření TabReadReminder

Stáhněte si soubory rozšíření TabReadReminder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název TabReadReminder TabReadReminder
ID feabkmfhdlhckilaibcpcdbighdfajho
Oficiální URL https://chromewebstore.google.com/detail/tabreadreminder/feabkmfhdlhckilaibcpcdbighdfajho
Popis Reminds you to read open articles by recommending them once a day on your new tab.
Velikost souboru 669 KB
Počet instalací 19
Aktuální Verze 0.1.2
Poslední Aktualizace 2023-01-23
Datum Vydání 2022-12-13
Vývojář Perilla Labs, Inc
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://dmitryd.notion.site/ShareAuth-Privacy-Policy-66e7763baaf845cbaa8250e59e53710c
Podporované Jazyky 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\/"
    ]
}