Remove YouTube Annotations

This extension will remove all of the annoying annotations from YouTube videos.

Remove YouTube Annotationsคืออะไร?

Remove YouTube Annotations เป็นส่วนขยายของ Chrome ที่พัฒนาโดย michaeljamore และคุณลักษณะหลักของมันคือ "This extension will remove all of the annoying annotations from YouTube videos."

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

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

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

                        Annotations are those annoying popups that you see on top of YouTube videos.  They are distracting and it's inconvenient to close them as they popup while you're watching a video.  This extension automatically removes them for you, creating a distraction free viewing experience.                    

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

ชื่อ Remove YouTube Annotations Remove YouTube Annotations
ID fhokegfbegdagjeldmgapodjkbdipifp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp
คำอธิบาย This extension will remove all of the annoying annotations from YouTube videos.
ขนาดไฟล์ 3.73 KB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-11-08
วันที่เผยแพร่ 2015-11-08
คะแนน 3.67/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา michaeljamore
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://mjamore.com
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove YouTube Annotations",
    "description": "This extension will remove all of the annoying annotations from YouTube videos.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "close.png",
        "default_title": "Remove YouTube Annotations"
    },
    "permissions": [
        "activeTab",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}