Procrastination Alert

Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.

什么是Procrastination Alert?

Procrastination Alert是由Simon Li开发的Chrome扩展程序,该扩展的主要功能是“Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Procrastination Alert扩展crx文件

下载Procrastination Alert扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        We often spend more time mindlessly browsing YouTube, Facebook and Twitter than we want to. This extension shows you gentle reminders on those websites after 25 minutes (or a customized amount of time) to help you get back to work and avoid procrastination.                    

扩展基本信息

名称 Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
官方URL https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
简介 Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
文件大小 14.67 KB
安装次数 46
当前版本 1.0
更新时间 2020-11-25
上架时间 2020-11-25
评分 4.00/5 共1次评分
开发者 Simon Li
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Procrastination Alert",
    "version": "1.0",
    "description": "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.",
    "manifest_version": 2,
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-32.png",
        "default_title": "Procrastination Alert",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}