AnnotationsOff

This extension removes all unwanted annotations and cards on YouTube videos

AnnotationsOffคืออะไร?

AnnotationsOff เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://leocardz.com และคุณลักษณะหลักของมันคือ "This extension removes all unwanted annotations and cards on YouTube videos"

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

screenshot
screenshot

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

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

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

                        This extension removes all unwanted annotations and cards on Youtube videos.                    

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

ชื่อ AnnotationsOff AnnotationsOff
ID gpifenckpeaielkgcbakjanpdppfnapn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn
คำอธิบาย This extension removes all unwanted annotations and cards on YouTube videos
ขนาดไฟล์ 49.03 KB
จำนวนการติดตั้ง 44
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2015-04-07
วันที่เผยแพร่ 2015-04-07
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา http://leocardz.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://lab.leocardz.com/annotationsoff
URL หน้าช่วยเหลือ https://github.com/LeonardoCardoso/AnnotationsOff/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AnnotationsOff",
    "description": "This extension removes all unwanted annotations and cards on YouTube videos",
    "version": "1.3",
    "background": {
        "persistent": false,
        "scripts": [
            "annotationsOff.js",
            "background.js"
        ]
    },
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "annotationsOff.js",
                "popup.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}