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.”。
扩展截图
下载EveryTube扩展crx文件
下载EveryTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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
} | |