Procrastination Alert

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

Procrastination Alert là gì?

Procrastination Alert là một tiện ích mở rộng Chrome được phát triển bởi Simon Li, và tính năng chính của nó là "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Procrastination Alert

Tải xuống các tệp mở rộng Procrastination Alert dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
URL Chính Thức https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
Mô tả Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Kích Thước Tệp 14.67 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-11-25
Ngày Phát Hành 2020-11-25
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Simon Li
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}