Focus

Extension to stop procrastination.

ما هو Focus؟

Focus هو إضافة Chrome تم تطويرها بواسطة Oliver Song، والميزة الرئيسية لها هي "Extension to stop procrastination.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Focus

قم بتنزيل ملفات الامتداد Focus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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:\/\/*\/*"
            ]
        }
    ]
}