AnnotationsOff

This extension removes all unwanted annotations and cards on YouTube videos

Что такое AnnotationsOff?

AnnotationsOff - это расширение Chrome, разработанное http://leocardz.com, и его основная функция - "This extension removes all unwanted annotations and cards on YouTube videos".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения AnnotationsOff

Скачайте файлы расширений 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:\/\/*\/*"
    ]
}