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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/"
    ]
}