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