Concentration

An ChatGPT-powered extension designed to improve your concentration level

Concentration là gì?

Concentration là một tiện ích mở rộng Chrome được phát triển bởi frankzhang314159, và tính năng chính của nó là "An ChatGPT-powered extension designed to improve your concentration level".

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

screenshot
screenshot
screenshot

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

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

                        Concentration is designed to improve users' concentration levels during their study/work time by blocking distracting websites. It employs natural language processing (NLP) and ChatGPT to optimize performance and accuracy.

Concentration is free for all. You do not need to pay for ChatGPT to use it.

***

It's easy to get started with Concentration.
  1) Enable the extension and open the popup page.
  2) Enter any keyword(s) that represent categories of websites you would like to block (e.g., gaming, movie).
  3) Click *Submit* for each keyword you entered, or *Remove All* to remove all existing keywords. You can also click on the ✗ mark next to each keyword to remove them individually.
  4) If you want, you may switch from Strict Mode (NLP-based, faster but less accurate) to GPT Mode (ChatGPT-based, slower but more accurate) or vice versa.
  5) From now on, Concentration will try to block websites you visit that are relevant to the keywords you entered throughout your online experience.                    

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

Tên Concentration Concentration
ID jkilnegoiabelpjhljiagmmnnppdaajf
URL Chính Thức https://chromewebstore.google.com/detail/concentration/jkilnegoiabelpjhljiagmmnnppdaajf
Mô tả An ChatGPT-powered extension designed to improve your concentration level
Kích Thước Tệp 1.49 MB
Số Lần Cài Đặt 144
Phiên Bản Hiện Tại 2.01
Cập Nhật Lần Cuối 2023-09-22
Ngày Phát Hành 2022-12-19
Đánh Giá 5.00/5 Tổng số 18 Đánh Giá
Nhà Phát Triển frankzhang314159
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sites.google.com/view/concentrat-/home
URL Trang Trợ Giúp https://sites.google.com/view/concentrat-/faq
URL Trang Chính Sách Bảo Mật https://sites.google.com/view/concentrat-/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Concentration",
    "version": "2.01",
    "description": "An ChatGPT-powered extension designed to improve your concentration level",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "A popup will be here!"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/concentration-server.herokuapp.com\/",
        "https:\/\/web.nightstarry.repl.co\/*",
        "https:\/\/tunnel.nightstarry.repl.co\/*",
        "https:\/\/ConBackend.nightstarry.repl.co\/*",
        "https:\/\/Concentrate.yulinzhang.repl.co\/*",
        "https:\/\/ConBackend-Enhanced.nightstarry.repl.co\/*"
    ],
    "content_security_policy": {
        "extension_page": "script-src: 'self' https:\/\/*.firebaseio.com; https:\/\/www.googleapis.com; object-src 'self'"
    }
}