Time Limit

Bring discipline and intentionality to the web.

Time Limit là gì?

Time Limit là một tiện ích mở rộng Chrome được phát triển bởi Zain Rehmani, và tính năng chính của nó là "Bring discipline and intentionality to the web.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Time Limit 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

                        Time is wasted scrolling through websites. You can set time limits on mobile apps, but this experience hasn't been effectively brought over to web.

TimeLimit allows you to add time limits to websites, and throughout the day, it tracks the number of times you've visited the website. If you pass the time limit on a site, you get to choose whether to extend by 15 minutes, ignore the limit for the day, or close the tab.

Taking an explicit action should help you make better decisions on how to spend your time.

Q: How do I add new websites to TimeLimit? How do I know how long I've spent on those sites?
A: Click the TimeLimit chrome extension icon to pop up a view that allows you to add/edit/remove websites to track, as well as modify how long your time limit is for that site. You can also use that extension popup to track your time spent on websites and visit history.

- Zain Rehmani ([email protected])                    

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

Tên Time Limit Time Limit
ID maojkkhnfbodbgbjmnnidflhkolhmfab
URL Chính Thức https://chromewebstore.google.com/detail/time-limit/maojkkhnfbodbgbjmnnidflhkolhmfab
Mô tả Bring discipline and intentionality to the web.
Kích Thước Tệp 23.75 KB
Số Lần Cài Đặt 561
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-12-03
Ngày Phát Hành 2022-10-31
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Zain Rehmani
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": "Time Limit",
    "icons": {
        "16": "timeLimit16.png",
        "48": "timeLimit48.png",
        "128": "timeLimit128.png"
    },
    "description": "Bring discipline and intentionality to the web.",
    "version": "1.0.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "websiteload.js"
            ],
            "css": [
                "css\/timelimitstyles.css"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "modal.html",
                "css\/timelimitstyles.css",
                "images\/waiting-time-icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": []
}