Rabbit: Productivity-Procrastination Tracker

An interactive companion to keep you focused and productive.

Rabbit: Productivity-Procrastination Tracker란 무엇입니까?

Rabbit: Productivity-Procrastination Tracker은(는) aaronjiang0에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An interactive companion to keep you focused and productive."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Rabbit: Productivity-Procrastination Tracker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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