AnnotationsOff

This extension removes all unwanted annotations and cards on YouTube videos

什么是AnnotationsOff?

AnnotationsOff是由http://leocardz.com开发的Chrome扩展程序,该扩展的主要功能是“This extension removes all unwanted annotations and cards on YouTube videos”。

扩展截图

screenshot
screenshot

下载AnnotationsOff扩展crx文件

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