Remove from Feed Button for YouTube

Easily remove items from your YouTube subscription feed with a single click

Что такое Remove from Feed Button for YouTube?

Remove from Feed Button for YouTube - это расширение Chrome, разработанное Jerome Dane, и его основная функция - "Easily remove items from your YouTube subscription feed with a single click".

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

screenshot

Скачать файл CRX расширения Remove from Feed Button for YouTube

Скачайте файлы расширений Remove from Feed Button for YouTube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Puts "X" button to the right of each videos in your YouTube subscription feed to allow removing videos with a single click.

Please report issues at https://goo.gl/4IgEU1

GitHub: https://goo.gl/2NK3T

Like this? You could buy me a cop of coffee: http://goo.gl/xzEAG

Follow me for updates on other projects:

Github: https://goo.gl/nYUgZm
Google: http://goo.gl/brcnw
Twitter: http://goo.gl/UTh0W
Facebook: http://goo.gl/OwKIG                    

Основная информация о расширении

Название Remove from Feed Button for YouTube Remove from Feed Button for YouTube
ID ogclfblkiagkkfpdbbbphchgfkieecml
Официальный URL https://chromewebstore.google.com/detail/remove-from-feed-button-f/ogclfblkiagkkfpdbbbphchgfkieecml
Описание Easily remove items from your YouTube subscription feed with a single click
Размер файла 48.05 KB
Количество установок 549
Текущая Версия 0.0.7
Последнее Обновление 2015-11-21
Дата публикации 2015-11-21
Рейтинг 3.67/5 Всего 43 оценок
Разработчик Jerome Dane
Тип оплаты free
Официальный сайт расширения https://github.com/JeromeDane/YouTube-Remove-From-Feed-Button
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove from Feed Button for YouTube",
    "description": "Easily remove items from your YouTube subscription feed with a single click",
    "version": "0.0.7",
    "options_page": "options.html",
    "permissions": [
        "http:\/\/www.youtube.com\/feed\/subscriptions*",
        "https:\/\/www.youtube.com\/feed\/subscriptions*"
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "web_accessible_resources": [
        "images\/close_16_r8.png"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}