TabReadReminder

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

TabReadReminderคืออะไร?

TabReadReminder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Perilla Labs, Inc และคุณลักษณะหลักของมันคือ "Reminds you to read open articles by recommending them once a day on your new tab."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TabReadReminder

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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\/"
    ]
}