Focus

Extension to stop procrastination.

Focus क्या है?

Focus Oliver Song द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to stop procrastination."।

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

screenshot

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

crx प्रारूप में Focus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Stops you from using sites that waste your time.

Update 1.1
Doesn't use Jquery!

Update 1.2
Chrome store policies, more sites, better wording.

Update 1.3
Manifest v3, fix Google Docs

Update 1.4
Small bugfix                    

एक्सटेंशन की मूल जानकारी

नाम Focus Focus
ID iadpfonbgmlpndbfnhcmpnlcdahgbkbc
आधिकारिक URL https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc
विवरण Extension to stop procrastination.
फ़ाइल का आकार 70.69 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.4
अंतिम अपडेट 2022-12-09
प्रकाशन तिथि 2012-11-24
रेटिंग 2.75/5 कुल 4 रेटिंग्स
डेवलपर Oliver Song
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus",
    "version": "1.4",
    "manifest_version": 3,
    "description": "Extension to stop procrastination.",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon2.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [],
    "action": {
        "name": "Focus",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.google.com\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.js",
                "shoop.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}