Rabbit: Productivity-Procrastination Tracker

An interactive companion to keep you focused and productive.

Cos'è Rabbit: Productivity-Procrastination Tracker?

Rabbit: Productivity-Procrastination Tracker è un'estensione di Chrome sviluppata da aaronjiang0, e la sua funzione principale è "An interactive companion to keep you focused and productive.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Rabbit: Productivity-Procrastination Tracker

Scarica i file di estensione Rabbit: Productivity-Procrastination Tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Rabbit: Productivity-Procrastination Tracker Rabbit: Productivity-Procrastination Tracker
ID ahlcihfjafcicppnhjcnbhcgmajkmimj
URL Ufficiale https://chromewebstore.google.com/detail/rabbit-productivity-procr/ahlcihfjafcicppnhjcnbhcgmajkmimj
Descrizione An interactive companion to keep you focused and productive.
Dimensione del File 1.92 MB
Conteggio Installazioni 574
Versione Corrente 2.0.4
Ultimo Aggiornamento 2023-12-18
Data di Pubblicazione 2020-05-12
Valutazione 4.67/5 Totale 12 Valutazioni
Sviluppatore aaronjiang0
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/iwasba/Rabbit-Chrome-Extension
Lingue Supportate 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"
            ]
        }
    ]
}