ViewTube

Watch videos from video sharing websites with extra options.

ViewTube란 무엇입니까?

ViewTube은(는) https://sebaro.pro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch videos from video sharing websites with extra options."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is an WebExtension addon based on my ViewTube userscript.

Supported sites:
YouTube, Dailymotion, Vimeo, Metacafe, Veoh, IMDb.

For more information read:
http://sebaro.pro/viewtube
https://gitlab.com/sebaro/viewtube
https://github.com/sebaro/viewtube                    

확장 프로그램 기본 정보

이름 ViewTube ViewTube
ID hfkkgpcjliaiakfgljddganibplpohgn
공식 URL https://chromewebstore.google.com/detail/viewtube/hfkkgpcjliaiakfgljddganibplpohgn
설명 Watch videos from video sharing websites with extra options.
파일 크기 41.55 KB
설치 횟수 221
현재 버전 2024.3.2
최근 업데이트 2024-03-02
출시 날짜 2020-06-04
평점 5.00/5 총 4 개의 평점
개발자 https://sebaro.pro
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://sebaro.pro/viewtube
도움말 페이지 URL http://sebaro.pro/contact/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ViewTube",
    "version": "2024.3.2",
    "description": "Watch videos from video sharing websites with extra options.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/youtube.com\/*",
                "http:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*",
                "http:\/\/m.youtube.com\/*",
                "https:\/\/m.youtube.com\/*",
                "http:\/\/dailymotion.com\/*",
                "http:\/\/www.dailymotion.com\/*",
                "https:\/\/dailymotion.com\/*",
                "https:\/\/www.dailymotion.com\/*",
                "http:\/\/vimeo.com\/*",
                "http:\/\/www.vimeo.com\/*",
                "https:\/\/vimeo.com\/*",
                "https:\/\/www.vimeo.com\/*",
                "http:\/\/veoh.com\/*",
                "http:\/\/www.veoh.com\/*",
                "https:\/\/veoh.com\/*",
                "https:\/\/www.veoh.com\/*",
                "http:\/\/imdb.com\/*",
                "http:\/\/www.imdb.com\/*",
                "https:\/\/imdb.com\/*",
                "https:\/\/www.imdb.com\/*"
            ],
            "js": [
                "viewtube.user.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        "http:\/\/manifest.googlevideo.com\/*",
        "https:\/\/manifest.googlevideo.com\/*",
        "http:\/\/player.vimeo.com\/*",
        "https:\/\/player.vimeo.com\/*",
        "http:\/\/api.vimeo.com\/*",
        "https:\/\/api.vimeo.com\/*"
    ]
}