AnnotationsOff

This extension removes all unwanted annotations and cards on YouTube videos

AnnotationsOff là gì?

AnnotationsOff là một tiện ích mở rộng Chrome được phát triển bởi http://leocardz.com, và tính năng chính của nó là "This extension removes all unwanted annotations and cards on YouTube videos".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AnnotationsOff

Tải xuống các tệp mở rộng AnnotationsOff dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AnnotationsOff AnnotationsOff
ID gpifenckpeaielkgcbakjanpdppfnapn
URL Chính Thức https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn
Mô tả This extension removes all unwanted annotations and cards on YouTube videos
Kích Thước Tệp 49.03 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2015-04-07
Ngày Phát Hành 2015-04-07
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển http://leocardz.com
Loại Thanh Toán free
Trang Web Mở Rộng http://lab.leocardz.com/annotationsoff
URL Trang Trợ Giúp https://github.com/LeonardoCardoso/AnnotationsOff/issues
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}