BlockTube Edited Version

YouTube™ content blocker for all subwindows in youtube

BlockTube Edited Version란 무엇입니까?

BlockTube Edited Version은(는) mostafa hamed에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "YouTube™ content blocker for all subwindows in youtube"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

BlockTube Edited Version 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        this is an extension which blocks specific suggestions on youtube                    

확장 프로그램 기본 정보

이름 BlockTube Edited Version BlockTube Edited Version
ID okceamnknholjgkbglnpboollninonho
공식 URL https://chromewebstore.google.com/detail/blocktube-edited-version/okceamnknholjgkbglnpboollninonho
설명 YouTube™ content blocker for all subwindows in youtube
파일 크기 40.62 KB
설치 횟수 123
현재 버전 1
최근 업데이트 2020-08-17
출시 날짜 2020-08-17
평점 2.00/5 총 1 개의 평점
개발자 mostafa hamed
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/MostafaHamedAbdelmasoud/blocktube
도움말 페이지 URL https://github.com/MostafaHamedAbdelmasoud/blocktube
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BlockTube Edited Version",
    "version": "1",
    "description": "YouTube\u2122 content blocker for all subwindows in youtube",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "src\/scripts\/content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "src\/scripts\/inject.js"
    ],
    "browser_action": {
        "default_title": "BlockTube Options",
        "default_icon": {
            "16": "assets\/icons\/16.png",
            "48": "assets\/icons\/48.png",
            "128": "assets\/icons\/128.png"
        }
    },
    "options_ui": {
        "page": "src\/ui\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/scripts\/background.js"
        ]
    },
    "icons": {
        "16": "assets\/icons\/16.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "homepage_url": "https:\/\/github.com\/MostafaHamedAbdelmasoud\/blocktube"
}