EveryTube

Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com.

EveryTube란 무엇입니까?

EveryTube은(는) www.odwyer.software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension allows you to keep up to date with creators who don't have a YouTube account right from your YouTube subscriptions page. Everything in one place 👍

How to use:

1. Visit the other video sites (Bitchute or Odysee) and login to them using your web browser as normal.
2. Visit your YouTube Subscriptions page (https://www.youtube.com/feed/subscriptions)
3. You should now see content from all video sites listed on that page.

Common Issues:

1. If for some reason you don't see the content on the YouTube page, but you are logged in to the other video sites, wait 5 minutes and try again (EveryTube takes that long to update sometimes). 

FAQs:

Q: Does EveryTube access my login username or password in any way? 
A: No.                    

확장 프로그램 기본 정보

이름 EveryTube EveryTube
ID emegoeklfbjgngcomlbmdjcmbaeilhhd
공식 URL https://chromewebstore.google.com/detail/everytube/emegoeklfbjgngcomlbmdjcmbaeilhhd
설명 Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com.
파일 크기 1.06 MB
설치 횟수 183
현재 버전 0.2.6
최근 업데이트 2022-09-12
출시 날짜 2020-09-09
평점 4.00/5 총 8 개의 평점
개발자 www.odwyer.software
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/project-49476/EveryTube
도움말 페이지 URL https://github.com/project-49476/EveryTube
개인정보 보호 정책 페이지 URL https://github.com/project-49476/EveryTube/wiki/Privacy-Policy
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EveryTube",
    "description": "Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com.",
    "version": "0.2.6",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "cookies",
        "unlimitedStorage",
        "history",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/www.odysee.com\/*",
        "https:\/\/odysee.com\/*",
        "https:\/\/www.bitchute.com\/",
        "https:\/\/lbry.tv\/",
        "https:\/\/lbry.tv\/$\/following",
        "https:\/\/api.lbry.tv\/*",
        "https:\/\/api.lbry.com\/*"
    ],
    "manifest_version": 3
}