Remove YouTube Annotations

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

Apa itu Remove YouTube Annotations?

Remove YouTube Annotations adalah ekstensi Chrome yang dikembangkan oleh michaeljamore, dan fitur utamanya adalah "This extension will remove all of the annoying annotations from YouTube videos.".

Unduh Berkas CRX Ekstensi Remove YouTube Annotations

Unduh file ekstensi Remove YouTube Annotations dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Remove YouTube Annotations Remove YouTube Annotations
ID fhokegfbegdagjeldmgapodjkbdipifp
URL Resmi https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp
Deskripsi This extension will remove all of the annoying annotations from YouTube videos.
Ukuran File 3.73 KB
Jumlah Instalasi 33
Versi Saat Ini 1.0
Terakhir Diperbarui 2015-11-08
Tanggal Publikasi 2015-11-08
Penilaian 3.67/5 Total 6 Penilaian
Pengembang michaeljamore
Tipe Pembayaran free
Situs Ekstensi http://mjamore.com
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}