Hide Labels and End Cards on Youtube

With this extension, you can hide end cards that appear at the end of a youtube video. Labels on the video can also be hidden.

Hide Labels and End Cards on Youtubeคืออะไร?

Hide Labels and End Cards on Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Arpit Banati และคุณลักษณะหลักของมันคือ "With this extension, you can hide end cards that appear at the end of a youtube video. Labels on the video can also be hidden."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide Labels and End Cards on Youtube

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

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

                        *NOTE - Though this extension starts working from the moment you install it but to use this extension to it's full potential, you might need to reload the youtube tabs or websites with youtube videos after installing the extension.*

Version 1.0.0 Updates :
1. No need of history permission anymore.
2. Now this extension can hide end cards and labels on youtube videos embedded in other websites.
3. Bug fixes and optimization.

If you have any complaints or suggestion for this extension then contact me at https://arpit-banati.firebaseapp.com/#/contact

This extension hide end cards that appear at the end of a youtube video.
It can also hide labels or annotations that appear while the video is playing.

Youtube video displays several cards and labels that partially cover the video. Labels can appear anytime on a video while end cards are only displayed 20-30 seconds before the completion of video.

Isn't it annoying, when these cards/labels are blocking the content of the video.
This is where the extension comes to your rescue. By just installing this extension, all the end cards and labels will be hidden automatically.

Options are provided using which you can completely stop/pause the extension till it is not required and also to start it again with just a click(no need to uninstall and install the extension every time).

I understand that there may be times when you want to see those cards/labels because it shows link to other video of that youtube channel or may be some information, that is why there is an option to add videos or even complete playlist to the exception list.
Exception list contains videos or playlist on which this extension will not run, i.e for those videos, end cards and labels will be shown to you.

You can specifically select which of the things among end cards, labels and subscribe icon should be hidden for you.The choice will be remembered for all the videos and can be changed anytime from the extension popup.
You can also chose to stop this extension from running on external websites that have youtube videos embedded in them.

There is also an option to edit the exception list using which you can remove videos/playlist added to exception list.                    

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

ชื่อ Hide Labels and End Cards on Youtube Hide Labels and End Cards on Youtube
ID jinenhpepbpkepablpjjchejlabbpken
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hide-labels-and-end-cards/jinenhpepbpkepablpjjchejlabbpken
คำอธิบาย With this extension, you can hide end cards that appear at the end of a youtube video. Labels on the video can also be hidden.
ขนาดไฟล์ 30.46 KB
จำนวนการติดตั้ง 14,685
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-07-16
วันที่เผยแพร่ 2020-04-02
คะแนน 4.82/5 รวมทั้งหมด 96 คะแนน
ผู้พัฒนา Arpit Banati
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://arpit-banati.firebaseapp.com
URL หน้าช่วยเหลือ https://arpit-banati.firebaseapp.com/#/contact
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Labels and End Cards on Youtube",
    "short_name": "Hide Labels and End Cards on Youtube",
    "version": "1.0.1",
    "description": "With this extension, you can hide end cards that appear at the end of a youtube video. Labels on the video can also be hidden.",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.youtube.com\/*"
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_popup": ".\/src\/popup\/popup.html",
        "default_icon": {
            "16": ".\/src\/images\/icon16.png",
            "32": ".\/src\/images\/icon32.png",
            "48": ".\/src\/images\/icon48.png",
            "128": ".\/src\/images\/icon128.png"
        }
    },
    "background": {
        "persistent": true,
        "page": ".\/src\/background\/bg.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                ".\/src\/content\/contentScript.min.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/src\/images\/icon16.png",
        "32": ".\/src\/images\/icon32.png",
        "48": ".\/src\/images\/icon48.png",
        "128": ".\/src\/images\/icon128.png"
    }
}