YouTube Blocker

Block non educational YouTube videos

YouTube Blockerคืออะไร?

YouTube Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eric และคุณลักษณะหลักของมันคือ "Block non educational YouTube videos"

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

screenshot
screenshot

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

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

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

                        YouTube Blocker blocks YouTube videos not in the Education, Science & Technology, or Howto & Style categories so you can focus on watching educational videos. 

YouTube™️ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
YouTube Blocker is not created by, affiliated with, or supported by Google Inc.

https://github.com/eric60/YouTube-Blocker
Please feel free to fork this repo or make pull requests for improvements and bug fixes
----------------------------------------------------------------------------------------------------------------------------------------
Change Log
[v3.4] 9/4/21:  Updated setup instructions to be more explicit and clear

2) I had to remove the default key due to security concerns. You now have to create a key to use the application.

1) Sorry for the inconvenience but YouTube has removed the category label in video descriptions so the extension does not work anymore automatically.
I have updated the application to get the category another way but you will have to set up your own data key in google. It should only take 5-10 minutes to create your own key from the instructions.
Thank you
---------------------------------------------------------------------------------------------------------------------------------------------                    

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

ชื่อ YouTube Blocker YouTube Blocker
ID oohcfepaadomnocmmkejhnfhcddpdpab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-blocker/oohcfepaadomnocmmkejhnfhcddpdpab
คำอธิบาย Block non educational YouTube videos
ขนาดไฟล์ 152 KB
จำนวนการติดตั้ง 12,791
เวอร์ชันปัจจุบัน 3.4
อัปเดตครั้งล่าสุด 2022-02-05
วันที่เผยแพร่ 2020-06-18
คะแนน 4.19/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา Eric
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/eric60/YouTube-Blocker
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Blocker",
    "version": "3.4",
    "manifest_version": 2,
    "description": "Block non educational YouTube videos",
    "icons": {
        "128": "resources\/icon.png"
    },
    "background": {
        "scripts": [
            "js\/jquery-3.4.1.min.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/jquery-3.4.1.min.js",
                "js\/contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "pages\/popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.googleapis.com; object-src 'self'",
    "options_page": "pages\/options.html",
    "permissions": [
        "notifications",
        "storage",
        "background",
        "*:\/\/*.youtube.com\/*",
        "tabs",
        "webNavigation"
    ]
}