YouTubeVideoHater

Skips videos You hate

YouTubeVideoHater란 무엇입니까?

YouTubeVideoHater은(는) jCrusader에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skips videos You hate"입니다.

확장 프로그램 스크린샷

screenshot

YouTubeVideoHater 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Lets You define videos You hate (by keywords) and then they will be automatically skipped.

# Intro
Lets imagine that You hate Justin Bieber. You hate is so much, that You cannot stand a video on YouTube that contains his voice.
Up to now, You would need to go to YouTube tab in chrome and change video, however this is no longer the case! This app will do it for You!

# How it works
- User is defining list of keywords.
- Extension is checking if title of YouTube video that is played right now contains any of keywords. If yes, then video is switched to next (as You would press next button in YouTube player).
- List of hated keywords is automatically synced between Your devices (if You are logged in Chrome).

# Defining keywords
1. Click on the "dislike" button in Extensions toolbar:
2. Type a keyword and click "Hate it!":
3. Keyword will be added to list at the bottom of the widget.
4. U can remove keywords You no longer want to hate. :)

# Extension source
This extension is OpenSource - You can download and play with it's code here:
https://github.com/bogumilbierc/YouTubeVideoHater                    

확장 프로그램 기본 정보

이름 YouTubeVideoHater YouTubeVideoHater
ID oobemdheodkfbolcepnncicdknanjfji
공식 URL https://chrome.google.com/webstore/detail/youtubevideohater/oobemdheodkfbolcepnncicdknanjfji
설명 Skips videos You hate
파일 크기 37.33 KB
설치 횟수 86
현재 버전 1.0
최근 업데이트 2017-03-09
출시 날짜 2017-03-09
평점 4.80/5 총 5 개의 평점
개발자 jCrusader
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTubeVideoHater",
    "description": "Skips videos You hate",
    "version": "1.0",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistence": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Hate this Video with me!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "external\/js\/jquery-3.1.1.min.js",
                "js\/skip_it.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "tabs",
        "",
        "webNavigation",
        "storage"
    ]
}