Remove YouTube Annotations

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

Remove YouTube Annotationsとは何ですか?

Remove YouTube Annotationsはmichaeljamoreによって開発されたChromeの拡張機能で、その主な機能は「This extension will remove all of the annoying annotations from YouTube videos.」です。

Remove YouTube Annotations拡張機能のCRXファイルをダウンロード

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\/*"
            ]
        }
    ]
}