Concentration

An ChatGPT-powered extension designed to improve your concentration level

Concentration란 무엇입니까?

Concentration은(는) frankzhang314159에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An ChatGPT-powered extension designed to improve your concentration level"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Concentration 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Concentration Concentration
ID jkilnegoiabelpjhljiagmmnnppdaajf
공식 URL https://chromewebstore.google.com/detail/concentration/jkilnegoiabelpjhljiagmmnnppdaajf
설명 An ChatGPT-powered extension designed to improve your concentration level
파일 크기 1.49 MB
설치 횟수 144
현재 버전 2.01
최근 업데이트 2023-09-22
출시 날짜 2022-12-19
평점 5.00/5 총 18 개의 평점
개발자 frankzhang314159
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://sites.google.com/view/concentrat-/home
도움말 페이지 URL https://sites.google.com/view/concentrat-/faq
개인정보 보호 정책 페이지 URL https://sites.google.com/view/concentrat-/privacy-policy
지원되는 언어 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'"
    }
}