Rabbit: Productivity-Procrastination Tracker

An interactive companion to keep you focused and productive.

Rabbit: Productivity-Procrastination Trackerคืออะไร?

Rabbit: Productivity-Procrastination Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aaronjiang0 และคุณลักษณะหลักของมันคือ "An interactive companion to keep you focused and productive."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rabbit: Productivity-Procrastination Tracker

ดาวน์โหลดไฟล์ส่วนขยาย Rabbit: Productivity-Procrastination Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Rabbit is a playful companion that keeps you aware of your browsing habits.

This extension keeps track of your activity and highlights your most visited sites.
Rabbit also helps you calculate your productivity index so that you can stay on task!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Rabbit: Productivity-Procrastination Tracker Rabbit: Productivity-Procrastination Tracker
ID ahlcihfjafcicppnhjcnbhcgmajkmimj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rabbit-productivity-procr/ahlcihfjafcicppnhjcnbhcgmajkmimj
คำอธิบาย An interactive companion to keep you focused and productive.
ขนาดไฟล์ 1.92 MB
จำนวนการติดตั้ง 574
เวอร์ชันปัจจุบัน 2.0.4
อัปเดตครั้งล่าสุด 2023-12-18
วันที่เผยแพร่ 2020-05-12
คะแนน 4.67/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา aaronjiang0
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/iwasba/Rabbit-Chrome-Extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Rabbit: Productivity-Procrastination Tracker",
    "description": "An interactive companion to keep you focused and productive.",
    "version": "2.0.4",
    "icons": {
        "128": "assets\/icon.png"
    },
    "action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "popup\/popup.html",
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "background": {
        "service_worker": "background\/script.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/script.js"
            ],
            "css": [
                "content-script\/script.css"
            ]
        }
    ]
}