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文件

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