BlockTube

YouTube™ content blocker

BlockTubeคืออะไร?

BlockTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BlockTube และคุณลักษณะหลักของมันคือ "YouTube™ content blocker"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BlockTube

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

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

                        BlockTube gives you the control to customize your YouTube viewing experience. It allows you to block specific channels and videos that you don't wish to see or get recommended with.
The extension is lightweight and fast, integrated seamlessly and does not affect your browsing experience at all, to an extent that an unsuspecting user will never know it's there to begin with.

** The extension includes the following features

* Integrated context menus across YouTube for easy blocking
* Block videos by name
* Block channels by name
* Block comments from specific user or by content keywords
* Block/Allow videos with specific runtime
* Block YouTube Shorts
* Block YouTube Movies
* Block Explore page
* Block YouTube's auto generated playlists
* Hide watched videos from recommendations
* Remove "Video paused, continue watching?" popups

** For advanced users

* Regular Expressions are supported across all filter options
* Advanced Blocking: Extend the functionality on your own using a JavaScript function (https://github.com/amitbl/blocktube/wiki/Advanced-Blocking)
  ** WARNING ** DO NOT PASTE UNTRUSTED CODE YOU DO NOT UNDERSTAND, YOUR YOUTUBE ACCOUNT MAY BE AT RISK IF YOU DO SO

PRIVACY NOTICE:
I do not collect any information or data on you.
This extension does not contain analytics/tracking codes.
This extension does not make even a single request to a 3rd party server.
The only data being recorded is your configured options which are saved locally
only on your computer.

SOURCE CODE AND BUG TRACKING:
https://github.com/amitbl/blocktube

FIREFOX VERSION:
https://addons.mozilla.org/en-US/firefox/addon/blocktube/                    

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

ชื่อ BlockTube BlockTube
ID bbeaicapbccfllodepmimpkgecanonai
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/blocktube/bbeaicapbccfllodepmimpkgecanonai
คำอธิบาย YouTube™ content blocker
ขนาดไฟล์ 193 KB
จำนวนการติดตั้ง 102,451
เวอร์ชันปัจจุบัน 0.4.1
อัปเดตครั้งล่าสุด 2024-02-24
วันที่เผยแพร่ 2020-06-16
คะแนน 4.24/5 รวมทั้งหมด 464 คะแนน
ผู้พัฒนา BlockTube
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/amitbl/blocktube
URL หน้าช่วยเหลือ https://github.com/amitbl/blocktube/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BlockTube",
    "version": "0.4.1",
    "description": "YouTube\u2122 content blocker",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ],
            "js": [
                "src\/scripts\/content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "src\/scripts\/inject.js"
    ],
    "browser_action": {
        "default_title": "BlockTube Options",
        "default_icon": {
            "16": "assets\/icons\/16.png",
            "48": "assets\/icons\/48.png",
            "128": "assets\/icons\/128.png"
        }
    },
    "options_ui": {
        "page": "src\/ui\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "src\/scripts\/background.js"
        ]
    },
    "icons": {
        "16": "assets\/icons\/16.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "homepage_url": "https:\/\/github.com\/amitbl\/blocktube"
}