Concentration

An ChatGPT-powered extension designed to improve your concentration level

Concentration क्या है?

Concentration frankzhang314159 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An ChatGPT-powered extension designed to improve your concentration level"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Concentration एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
    }
}