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
公式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
Eメール [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\/"
    ]
}