SuperFocus - Ultimate Distraction Blocker

Increase your focus and be more productive using SuperFocus. Allows you to hide your social feeds and other distracting elements.

SuperFocus - Ultimate Distraction Blockerคืออะไร?

SuperFocus - Ultimate Distraction Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dictanote และคุณลักษณะหลักของมันคือ "Increase your focus and be more productive using SuperFocus. Allows you to hide your social feeds and other distracting elements."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SuperFocus - Ultimate Distraction Blocker

ดาวน์โหลดไฟล์ส่วนขยาย SuperFocus - Ultimate Distraction Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The SuperFocus extension allows you hide distracting elements in a page like social feed , notifications, comments, recommendations, etc.  SuperFocus currently works on Youtube™, Facebook™, Instagram™, LinkedIn™, and Twitter™.

The Extension supports for the following options:

On Youtube:
* Hide Feed
* Hide Comments
* Hide Right Sidebar
* Hide Related Videos
* Hide Subscriptions Bar
and more...

On Facebook:
* Hide Feed
* Hide Stories

On Twitter:
* Hide Feed
* Hide Trends
* Hide Explore Tab
* Hide Search Bar
* Hide Notifications
and more...

On LinkedIn:
* Hide Feed
* Hide News
* Hide Notifications

On Instagram:
* Hide Feed
* Hide Notifications

This extension is different from site-blocking extensions. The problem with site-blocking extensions is that they are binary in nature. You either block or unblock a site. Most mortals end up unblocking/blocking constantly leading to limited benefit. This extension is complementary and is intended to reduce time spent.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SuperFocus - Ultimate Distraction Blocker SuperFocus - Ultimate Distraction Blocker
ID dboceidahklphhjpfbpnicodnbkoiokn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/superfocus-ultimate-distr/dboceidahklphhjpfbpnicodnbkoiokn
คำอธิบาย Increase your focus and be more productive using SuperFocus. Allows you to hide your social feeds and other distracting elements.
ขนาดไฟล์ 359 KB
จำนวนการติดตั้ง 94
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2024-01-14
วันที่เผยแพร่ 2022-02-22
คะแนน 4.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Dictanote
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://forms.gle/7b7fKygtBzD41k9A6
URL หน้านโยบายความเป็นส่วนตัว https://dictanote.co/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SuperFocus - Ultimate Distraction Blocker",
    "short_name": "SuperFocus",
    "description": "Increase your focus and be more productive using SuperFocus. Allows you to hide your social feeds and other distracting elements.",
    "version": "1.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "sw.js"
    },
    "action": {
        "default_icon": "img\/icon_active_32.png",
        "default_popup": "popup.html"
    },
    "options_page": "settings.html",
    "icons": {
        "128": "img\/icon_128.png",
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/storage.js",
                "js\/focus.js",
                "js\/youtube.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/storage.js",
                "js\/focus.js",
                "js\/twitter.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "js\/storage.js",
                "js\/focus.js",
                "js\/linkedin.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "js\/storage.js",
                "js\/focus.js",
                "js\/facebook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "js": [
                "js\/storage.js",
                "js\/focus.js",
                "js\/instagram.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "js\/storage.js",
                "js\/focus.js",
                "js\/reddit.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.instagram.com\/*",
                "*:\/\/*.reddit.com\/*"
            ],
            "resources": [
                "css\/*.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        ""
    ]
}