Utilities Extension for Brave

Utilities related to the Brave browser, including a tab creation blocker.

Utilities Extension for Braveคืออะไร?

Utilities Extension for Brave เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chugwig และคุณลักษณะหลักของมันคือ "Utilities related to the Brave browser, including a tab creation blocker."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Utilities Extension for Brave

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

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

                        An extension with useful utilities for the Brave Browser.  Currently only one such utility exists, and it is the Annoying New Tab Creation Blocker (ANT-CB).

I know it's not a majority of the internet, but there are occasionally sites that will make it so clicking on a seemingly normal button / link / or video will open up a new tab or window with an ad.  This can sometimes happen 3 or 4 times before the site finally lets you click on what you were trying to click on, so I created the ANT-CB.  Simply open the extension popup, and click "Activate Blocker".  Now no new tabs or windows can be created in your browser.  To turn it off, simply open the popup again and click "Deactivate Blocker".  

If you only notice an occasional ANT then you can stick with turning the blocker on and off, but for sites infested with ANTs you can add them to the blacklist so the blocker will automatically activate when you visit any page on that site.                    

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

ชื่อ Utilities Extension for Brave Utilities Extension for Brave
ID nfebecgnmeaadlohoiemiddcogfnlhhi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/utilities-extension-for-b/nfebecgnmeaadlohoiemiddcogfnlhhi
คำอธิบาย Utilities related to the Brave browser, including a tab creation blocker.
ขนาดไฟล์ 45.51 KB
จำนวนการติดตั้ง 200
เวอร์ชันปัจจุบัน 3.0.0
อัปเดตครั้งล่าสุด 2019-08-01
วันที่เผยแพร่ 2019-07-31
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Chugwig
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Utilities Extension for Brave",
    "short_name": "Utils for Brave",
    "version": "3.0.0",
    "description": "Utilities related to the Brave browser, including a tab creation blocker.",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "pages\/index.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}