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
官方網址 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\/*"
            ]
        }
    ]
}