TabReadReminder

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

TabReadReminder là gì?

TabReadReminder là một tiện ích mở rộng Chrome được phát triển bởi Perilla Labs, Inc, và tính năng chính của nó là "Reminds you to read open articles by recommending them once a day on your new tab.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TabReadReminder

Tải xuống các tệp mở rộng TabReadReminder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TabReadReminder TabReadReminder
ID feabkmfhdlhckilaibcpcdbighdfajho
URL Chính Thức https://chromewebstore.google.com/detail/tabreadreminder/feabkmfhdlhckilaibcpcdbighdfajho
Mô tả Reminds you to read open articles by recommending them once a day on your new tab.
Kích Thước Tệp 669 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2023-01-23
Ngày Phát Hành 2022-12-13
Nhà Phát Triển Perilla Labs, Inc
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://dmitryd.notion.site/ShareAuth-Privacy-Policy-66e7763baaf845cbaa8250e59e53710c
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}