@foxreis/tizentube 1.14.6 → 1.14.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/assets/TizenTube Standalone Banner.png +0 -0
- package/.github/assets/TizenTube_Cobalt-button.png +0 -0
- package/.github/assets/TizenTube_Cobalt_dl-button.png +0 -0
- package/.github/assets/banner.png +1 -0
- package/.github/workflows/build-release.yaml +6 -0
- package/README.md +44 -24
- package/dist/service.js +679 -69
- package/dist/userScript.js +2 -2
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -39,6 +39,12 @@ jobs:
|
|
|
39
39
|
fi
|
|
40
40
|
echo "RELEASE_VERSION=$TAG" >> $GITHUB_ENV
|
|
41
41
|
|
|
42
|
+
- name: Install modules, transpile service and build service for DIAL
|
|
43
|
+
working-directory: service
|
|
44
|
+
run: |
|
|
45
|
+
npm install
|
|
46
|
+
npx rollup -c rollup.config.js
|
|
47
|
+
|
|
42
48
|
- name: Install modules, transpile service and build service
|
|
43
49
|
working-directory: standalone/service
|
|
44
50
|
run: |
|
package/README.md
CHANGED
|
@@ -1,24 +1,44 @@
|
|
|
1
|
-
# TizenTube
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
1
|
+
# ▶️ TizenTube
|
|
2
|
+
<p align="center">
|
|
3
|
+
<img width="600px" src=".github/assets/TizenTube Standalone Banner.png">
|
|
4
|
+
<br>
|
|
5
|
+
<sub> TizenTube logo, banner and README by <a href="https://github.com/Zyborg777">@Zyborg777</a> </sub>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
**TizenTube** is a TizenBrew module that enhances your favourite streaming websites viewing experience by removing ads and adding support for Sponsorblock. **Now works as a standalone app!**
|
|
9
|
+
|
|
10
|
+
** **
|
|
11
|
+
🤖 **Looking for an app for Android TVs?** Check out [TizenTube Cobalt](https://github.com/reisxd/TizenTubeCobalt). It offers everything TizenTube has for Android TVs.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
<p align="left">
|
|
15
|
+
<a href="https://github.com/reisxd/TizenTubeCobalt/releases/latest">
|
|
16
|
+
<picture>
|
|
17
|
+
<img width="250px"
|
|
18
|
+
src=".github/assets/TizenTube_Cobalt_dl-button.png" />
|
|
19
|
+
</picture>
|
|
20
|
+
</a>
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
## ❓ How to install
|
|
24
|
+
|
|
25
|
+
1. Install TizenBrew from [here](https://github.com/reisxd/TizenBrew) and follow the instructions.
|
|
26
|
+
|
|
27
|
+
2. TizenTube is installed to TizenBrew by default. It should be in the home screen. If not, add `@foxreis/tizentube` as a NPM module in TizenBrew module manager.
|
|
28
|
+
|
|
29
|
+
## ✨ Features
|
|
30
|
+
- 📺 **Picture-in-Picture Mode**
|
|
31
|
+
- 🛑 **Ad Blocker**: Enjoy your favourite streaming website without interruptions from ads.
|
|
32
|
+
- ❗ **SponsorBlock Support**: Automatically skip sponsored segments in videos.
|
|
33
|
+
- ⏭️ **Video Speed Control**: Adjust playback speed to your preference.
|
|
34
|
+
- 🔺 **[DeArrow](https://dearrow.ajay.app/) Support**: Remove clickbait and misleading video titles.
|
|
35
|
+
- ➕ **More to come!** Request features via [issues](https://github.com/reisxd/TizenTube/issues/new).
|
|
36
|
+
|
|
37
|
+
## 🌐 Community and Support
|
|
38
|
+
| Links |
|
|
39
|
+
| ------------- |
|
|
40
|
+
| [r/TizenTube Subreddit](https://www.reddit.com/r/TizenTube/) |
|
|
41
|
+
| [Discord Server](https://discord.gg/m2P7v8Y2qR) |
|
|
42
|
+
| [Telegram](https://t.me/tizentubeofficial) |
|
|
43
|
+
| [Matrix Space](https://matrix.to/#/!BLE5ubNYktI30e8K0j:matrix.6513006.xyz) |
|
|
44
|
+
| [Report Issues / Request Features](https://github.com/reisxd/TizenTube/issues) |
|