ytblockr

block ugly videos, chanels, users, anything from searches

ytblockr란 무엇입니까?

ytblockr은(는) ytBlockr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "block ugly videos, chanels, users, anything from searches"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ytBlockr extends Youtube's UI to allow blocking users, channels, titles or single videos.  It also allows blocking obvious troll videos  e.g. videos that only last 1 or 2 seconds (configurable).

If you experience issues please leave a comment and I will do my best to fix it.

Restrictions:
Sadly not all videos can be blocked. Since this extension uses Youtube's built in features it is very reliable but fails with content that is updated manually (e.g. load more on scroll to bottom ) due to missing events.                    

확장 프로그램 기본 정보

이름 ytblockr ytblockr
ID ekoknnbpaoopgcffgcenhkkdfmhkbkfc
공식 URL https://chrome.google.com/webstore/detail/ytblockr/ekoknnbpaoopgcffgcenhkkdfmhkbkfc
설명 block ugly videos, chanels, users, anything from searches
파일 크기 358 KB
설치 횟수 326
현재 버전 0.0.2
최근 업데이트 2016-07-18
출시 날짜 2016-07-18
평점 2.60/5 총 10 개의 평점
개발자 ytBlockr
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ytblockr",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "block ugly videos, chanels, users, anything from searches",
    "homepage_url": "https:\/\/github.com\/pixelass\/ytBlockr",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "24": "icons\/icon24.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "bg\/background.html",
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "https:\/\/youtube.com\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_title": "ytBlockr",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/inject.js"
            ],
            "css": [
                "css\/inject.css"
            ]
        }
    ]
}