TabReadReminder

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

什麼是TabReadReminder?

TabReadReminder是由Perilla Labs, Inc開發的Chrome擴展程式,該擴展的主要功能是“Reminds you to read open articles by recommending them once a day on your new tab.”。

擴展截圖

screenshot

下載TabReadReminder擴展crx文件

下載TabReadReminder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 TabReadReminder TabReadReminder
ID feabkmfhdlhckilaibcpcdbighdfajho
官方網址 https://chromewebstore.google.com/detail/tabreadreminder/feabkmfhdlhckilaibcpcdbighdfajho
簡介 Reminds you to read open articles by recommending them once a day on your new tab.
檔案大小 669 KB
安裝次數 19
目前版本 0.1.2
更新時間 2023-01-23
上架時間 2022-12-13
開發者 Perilla Labs, Inc
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://dmitryd.notion.site/ShareAuth-Privacy-Policy-66e7763baaf845cbaa8250e59e53710c
支援的語言 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\/"
    ]
}