Rabbit: Productivity-Procrastination Tracker

An interactive companion to keep you focused and productive.

Was ist Rabbit: Productivity-Procrastination Tracker?

Rabbit: Productivity-Procrastination Tracker ist eine Chrome-Erweiterung, die von aaronjiang0 entwickelt wurde, und ihr Hauptmerkmal ist "An interactive companion to keep you focused and productive.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Rabbit: Productivity-Procrastination Tracker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Rabbit: Productivity-Procrastination Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Rabbit: Productivity-Procrastination Tracker Rabbit: Productivity-Procrastination Tracker
ID ahlcihfjafcicppnhjcnbhcgmajkmimj
Offizielle URL https://chromewebstore.google.com/detail/rabbit-productivity-procr/ahlcihfjafcicppnhjcnbhcgmajkmimj
Beschreibung An interactive companion to keep you focused and productive.
Dateigröße 1.92 MB
Installationsanzahl 574
Aktuelle Version 2.0.4
Letztes Update 2023-12-18
Veröffentlichungsdatum 2020-05-12
Bewertung 4.67/5 Insgesamt 12 Bewertungen
Entwickler aaronjiang0
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/iwasba/Rabbit-Chrome-Extension
Unterstützte Sprachen 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"
            ]
        }
    ]
}