mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-06 19:47:04 +03:00
Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
086525c178 | ||
|
|
32a35aa19c | ||
|
|
80148804fb | ||
|
|
8ce15e69fb | ||
|
|
d3cd0962d5 | ||
|
|
c1168582a9 | ||
|
|
dbd51d026b | ||
|
|
61f1a8918c | ||
|
|
3a488a9110 | ||
|
|
842f7b33b8 | ||
|
|
fcc7ce8dfc | ||
|
|
9c4946a3fe | ||
|
|
7d2e4c8515 | ||
|
|
3b2fe51973 | ||
|
|
b2ac881b9b | ||
|
|
4a134d7604 | ||
|
|
ad7d3a320b | ||
|
|
0c3aa922ca | ||
|
|
875ec357d9 | ||
|
|
510c3723ad | ||
|
|
f5910407ba | ||
|
|
2691dc5df5 | ||
|
|
31ef4f39bf | ||
|
|
4044a22e04 | ||
|
|
3c2c140eb5 | ||
|
|
5cdbc233e4 | ||
|
|
86f8809de7 | ||
|
|
5163b3362f | ||
|
|
443fb1f448 | ||
|
|
7cd7089980 | ||
|
|
61f5d7a902 | ||
|
|
6ab88e9fa0 | ||
|
|
3bddd0405c | ||
|
|
dfdc052f4b | ||
|
|
7ca3b69965 | ||
|
|
5577b38e2b | ||
|
|
ae4f850ff4 |
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@@ -10,10 +10,10 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Initialization
|
# Initialization
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '18'
|
node-version: '18'
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
@@ -27,7 +27,7 @@ jobs:
|
|||||||
# Create Chrome artifacts
|
# Create Chrome artifacts
|
||||||
- name: Create Chrome artifacts
|
- name: Create Chrome artifacts
|
||||||
run: npm run build:chrome
|
run: npm run build:chrome
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ChromeExtension
|
name: ChromeExtension
|
||||||
path: dist
|
path: dist
|
||||||
@@ -39,7 +39,7 @@ jobs:
|
|||||||
# Create Firefox artifacts
|
# Create Firefox artifacts
|
||||||
- name: Create Firefox artifacts
|
- name: Create Firefox artifacts
|
||||||
run: npm run build:firefox
|
run: npm run build:firefox
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: FirefoxExtension
|
name: FirefoxExtension
|
||||||
path: dist
|
path: dist
|
||||||
@@ -50,7 +50,7 @@ jobs:
|
|||||||
# Create Beta artifacts (Builds with the name changed to beta)
|
# Create Beta artifacts (Builds with the name changed to beta)
|
||||||
- name: Create Chrome Beta artifacts
|
- name: Create Chrome Beta artifacts
|
||||||
run: npm run build:chrome -- --env stream=beta
|
run: npm run build:chrome -- --env stream=beta
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ChromeExtensionBeta
|
name: ChromeExtensionBeta
|
||||||
path: dist
|
path: dist
|
||||||
@@ -60,7 +60,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Create Firefox Beta artifacts
|
- name: Create Firefox Beta artifacts
|
||||||
run: npm run build:firefox -- --env stream=beta
|
run: npm run build:firefox -- --env stream=beta
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: FirefoxExtensionBeta
|
name: FirefoxExtensionBeta
|
||||||
path: dist
|
path: dist
|
||||||
|
|||||||
81
.github/workflows/release.yml
vendored
81
.github/workflows/release.yml
vendored
@@ -12,10 +12,10 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Initialization
|
# Initialization
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '18'
|
node-version: '18'
|
||||||
- name: Copy configuration
|
- name: Copy configuration
|
||||||
@@ -35,24 +35,11 @@ jobs:
|
|||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
|
|
||||||
# Create Chrome artifacts
|
|
||||||
- name: Create Chrome artifacts
|
|
||||||
run: npm run build:chrome
|
|
||||||
- run: mkdir ./builds
|
|
||||||
- name: Zip Artifacts
|
|
||||||
run: cd ./dist ; zip -r ../builds/ChromeExtension.zip *
|
|
||||||
- name: Upload ChromeExtension to release
|
|
||||||
uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467
|
|
||||||
with:
|
|
||||||
args: builds/ChromeExtension.zip
|
|
||||||
name: ChromeExtension.zip
|
|
||||||
path: ./builds/ChromeExtension.zip
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
# Create Firefox artifacts
|
# Create Firefox artifacts
|
||||||
- name: Create Firefox artifacts
|
- name: Create Firefox artifacts
|
||||||
run: npm run build:firefox
|
run: npm run build:firefox
|
||||||
|
- run: mkdir ./builds
|
||||||
- name: Zip Artifacts
|
- name: Zip Artifacts
|
||||||
run: cd ./dist ; zip -r ../builds/FirefoxExtension.zip *
|
run: cd ./dist ; zip -r ../builds/FirefoxExtension.zip *
|
||||||
- name: Upload FirefoxExtension to release
|
- name: Upload FirefoxExtension to release
|
||||||
@@ -62,32 +49,18 @@ jobs:
|
|||||||
name: FirefoxExtension.zip
|
name: FirefoxExtension.zip
|
||||||
path: ./builds/FirefoxExtension.zip
|
path: ./builds/FirefoxExtension.zip
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
# Create Beta artifacts (Builds with the name changed to beta)
|
# Create Chrome artifacts
|
||||||
- name: Create Chrome Beta artifacts
|
- name: Create Chrome artifacts
|
||||||
run: npm run build:chrome -- --env stream=beta
|
run: npm run build:chrome
|
||||||
- name: Zip Artifacts
|
- name: Zip Artifacts
|
||||||
run: cd ./dist ; zip -r ../builds/ChromeExtensionBeta.zip *
|
run: cd ./dist ; zip -r ../builds/ChromeExtension.zip *
|
||||||
- name: Upload ChromeExtensionBeta to release
|
- name: Upload ChromeExtension to release
|
||||||
uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467
|
uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467
|
||||||
with:
|
with:
|
||||||
args: builds/ChromeExtensionBeta.zip
|
args: builds/ChromeExtension.zip
|
||||||
name: ChromeExtensionBeta.zip
|
name: ChromeExtension.zip
|
||||||
path: ./builds/ChromeExtensionBeta.zip
|
path: ./builds/ChromeExtension.zip
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
|
|
||||||
# Create Safari artifacts
|
|
||||||
- name: Create Safari artifacts
|
|
||||||
run: npm run build:safari
|
|
||||||
- name: Zip Artifacts
|
|
||||||
run: cd ./dist ; zip -r ../builds/SafariExtension.zip *
|
|
||||||
- name: Upload SafariExtension to release
|
|
||||||
uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467
|
|
||||||
with:
|
|
||||||
args: builds/SafariExtension.zip
|
|
||||||
name: SafariExtension.zip
|
|
||||||
path: ./builds/SafariExtension.zip
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
# Create Edge artifacts
|
# Create Edge artifacts
|
||||||
@@ -105,10 +78,36 @@ jobs:
|
|||||||
path: ./builds/EdgeExtension.zip
|
path: ./builds/EdgeExtension.zip
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# Create Safari artifacts
|
||||||
|
- name: Create Safari artifacts
|
||||||
|
run: npm run build:safari
|
||||||
|
- name: Zip Artifacts
|
||||||
|
run: cd ./dist ; zip -r ../builds/SafariExtension.zip *
|
||||||
|
- name: Upload SafariExtension to release
|
||||||
|
uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467
|
||||||
|
with:
|
||||||
|
args: builds/SafariExtension.zip
|
||||||
|
name: SafariExtension.zip
|
||||||
|
path: ./builds/SafariExtension.zip
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# Create Beta artifacts (Builds with the name changed to beta)
|
||||||
|
- name: Create Chrome Beta artifacts
|
||||||
|
run: npm run build:chrome -- --env stream=beta
|
||||||
|
- name: Zip Artifacts
|
||||||
|
run: cd ./dist ; zip -r ../builds/ChromeExtensionBeta.zip *
|
||||||
|
- name: Upload ChromeExtensionBeta to release
|
||||||
|
uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467
|
||||||
|
with:
|
||||||
|
args: builds/ChromeExtensionBeta.zip
|
||||||
|
name: ChromeExtensionBeta.zip
|
||||||
|
path: ./builds/ChromeExtensionBeta.zip
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
# Firefox Beta
|
# Firefox Beta
|
||||||
- name: Create Firefox Beta artifacts
|
- name: Create Firefox Beta artifacts
|
||||||
run: npm run build:firefox -- --env stream=beta
|
run: npm run build:firefox -- --env stream=beta
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: FirefoxExtensionBeta
|
name: FirefoxExtensionBeta
|
||||||
path: dist
|
path: dist
|
||||||
@@ -125,7 +124,7 @@ jobs:
|
|||||||
run: sudo apt-get install rename
|
run: sudo apt-get install rename
|
||||||
- name: Rename signed file
|
- name: Rename signed file
|
||||||
run: cd ./web-ext-artifacts ; rename 's/.*/FirefoxSignedInstaller.xpi/' *
|
run: cd ./web-ext-artifacts ; rename 's/.*/FirefoxSignedInstaller.xpi/' *
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: FirefoxExtensionSigned.xpi
|
name: FirefoxExtensionSigned.xpi
|
||||||
path: ./web-ext-artifacts/FirefoxSignedInstaller.xpi
|
path: ./web-ext-artifacts/FirefoxSignedInstaller.xpi
|
||||||
|
|||||||
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@@ -9,10 +9,10 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Initialization
|
# Initialization
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '18'
|
node-version: '18'
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
@@ -25,7 +25,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload results on fail
|
- name: Upload results on fail
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Test Results
|
name: Test Results
|
||||||
path: ./test-results
|
path: ./test-results
|
||||||
6
.github/workflows/update-oss-attribution.yml
vendored
6
.github/workflows/update-oss-attribution.yml
vendored
@@ -12,10 +12,10 @@ jobs:
|
|||||||
update-oss:
|
update-oss:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '18'
|
node-version: '18'
|
||||||
- name: Install and generate attribution
|
- name: Install and generate attribution
|
||||||
@@ -29,7 +29,7 @@ jobs:
|
|||||||
cd ci && npx ts-node prettify.ts
|
cd ci && npx ts-node prettify.ts
|
||||||
|
|
||||||
- name: Create pull request to update list
|
- name: Create pull request to update list
|
||||||
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04
|
uses: peter-evans/create-pull-request@v7
|
||||||
# v4.2.3
|
# v4.2.3
|
||||||
with:
|
with:
|
||||||
commit-message: Update OSS Attribution
|
commit-message: Update OSS Attribution
|
||||||
|
|||||||
4
.github/workflows/updateInvidous.yml
vendored
4
.github/workflows/updateInvidous.yml
vendored
@@ -8,7 +8,7 @@ jobs:
|
|||||||
check-list:
|
check-list:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- name: Download instance lists
|
- name: Download instance lists
|
||||||
@@ -21,7 +21,7 @@ jobs:
|
|||||||
run: npm run ci:invidious
|
run: npm run ci:invidious
|
||||||
|
|
||||||
- name: Create pull request to update list
|
- name: Create pull request to update list
|
||||||
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04
|
uses: peter-evans/create-pull-request@v7
|
||||||
# v4.2.3
|
# v4.2.3
|
||||||
with:
|
with:
|
||||||
commit-message: Update Invidious List
|
commit-message: Update Invidious List
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
"icons/close.png",
|
"icons/close.png",
|
||||||
"icons/skipIcon.svg",
|
"icons/skipIcon.svg",
|
||||||
"icons/refresh.svg",
|
"icons/refresh.svg",
|
||||||
"icons/beep.ogg",
|
"icons/beep.oga",
|
||||||
"icons/pause.svg",
|
"icons/pause.svg",
|
||||||
"icons/stop.svg",
|
"icons/stop.svg",
|
||||||
"icons/skip.svg",
|
"icons/skip.svg",
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
"icons/close.png",
|
"icons/close.png",
|
||||||
"icons/skipIcon.svg",
|
"icons/skipIcon.svg",
|
||||||
"icons/refresh.svg",
|
"icons/refresh.svg",
|
||||||
"icons/beep.ogg",
|
"icons/beep.oga",
|
||||||
"icons/pause.svg",
|
"icons/pause.svg",
|
||||||
"icons/stop.svg",
|
"icons/stop.svg",
|
||||||
"icons/skip.svg",
|
"icons/skip.svg",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "__MSG_fullName__",
|
"name": "__MSG_fullName__",
|
||||||
"short_name": "SponsorBlock",
|
"short_name": "SponsorBlock",
|
||||||
"version": "5.9.3",
|
"version": "5.10",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_Description__",
|
"description": "__MSG_Description__",
|
||||||
"homepage_url": "https://sponsor.ajay.app",
|
"homepage_url": "https://sponsor.ajay.app",
|
||||||
|
|||||||
Submodule maze-utils updated: f12ac4f5f8...6770087140
Submodule public/_locales updated: 6abf21bf47...2ac051f22e
@@ -218,6 +218,11 @@ div:hover > .sponsorBlockChapterBar {
|
|||||||
from { opacity: 0; }
|
from { opacity: 0; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes fadeInToFaded {
|
||||||
|
from { opacity: 0; }
|
||||||
|
to { opacity: 0.5; }
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes fadeOut {
|
@keyframes fadeOut {
|
||||||
to { opacity: 0; }
|
to { opacity: 0; }
|
||||||
}
|
}
|
||||||
@@ -290,6 +295,10 @@ div:hover > .sponsorBlockChapterBar {
|
|||||||
animation: fadeIn 0.5s ease-out;
|
animation: fadeIn 0.5s ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sponsorSkipNoticeFadeIn.sponsorSkipNoticeFaded {
|
||||||
|
animation: fadeInToFaded 0.5s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
.exportCopiedNotice .sponsorSkipNoticeFadeIn {
|
.exportCopiedNotice .sponsorSkipNoticeFadeIn {
|
||||||
animation: none;
|
animation: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -118,13 +118,13 @@ html, body {
|
|||||||
|
|
||||||
.option-group > div {
|
.option-group > div {
|
||||||
min-height: 50px;
|
min-height: 50px;
|
||||||
padding: 20px 0;
|
padding: 15px 0;
|
||||||
border-bottom: 1px solid var(--border-color);
|
border-bottom: 1px solid var(--border-color);
|
||||||
border-image: linear-gradient(to right, var(--border-color), #00000000 80%) 1;
|
border-image: linear-gradient(to right, var(--border-color), #00000000 80%) 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.categoryExtraOptions {
|
.categoryExtraOptions {
|
||||||
padding-bottom: 20px;
|
padding-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#music_offtopic_autoSkipOnMusicVideos {
|
#music_offtopic_autoSkipOnMusicVideos {
|
||||||
@@ -271,11 +271,11 @@ input[type='number'] {
|
|||||||
|
|
||||||
.small-description {
|
.small-description {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
padding: 15px 0 0 20px;
|
padding: 5px 0 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.small-description td {
|
.small-description td {
|
||||||
padding: 10px 0 20px 20px;
|
padding: 2.5px 0 10px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.indent {
|
.indent {
|
||||||
@@ -283,7 +283,7 @@ input[type='number'] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.categoryTableElement td {
|
.categoryTableElement td {
|
||||||
padding-top: 10px;
|
padding-top: 5px;
|
||||||
border-top: 1px solid var(--border-color);
|
border-top: 1px solid var(--border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -353,7 +353,8 @@ input[type='number'] {
|
|||||||
|
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
||||||
display: table;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.switch-container .switch-label {
|
.switch-container .switch-label {
|
||||||
|
|||||||
@@ -209,15 +209,31 @@
|
|||||||
<div class="small-description">__MSG_skipNoticeDurationDescription__</div>
|
<div class="small-description">__MSG_skipNoticeDurationDescription__</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div data-type="toggle" data-toggle-type="reverse" data-sync="dontShowNotice">
|
<div>
|
||||||
<div class="switch-container">
|
<div data-type="toggle" data-sync="showUpcomingNotice">
|
||||||
<label class="switch">
|
<div class="switch-container">
|
||||||
<input id="dontShowNotice" type="checkbox" checked>
|
<label class="switch">
|
||||||
<span class="slider round"></span>
|
<input id="showUpcomingNotice" type="checkbox" checked>
|
||||||
</label>
|
<span class="slider round"></span>
|
||||||
<label class="switch-label" for="dontShowNotice">
|
</label>
|
||||||
__MSG_showSkipNotice__
|
<label class="switch-label" for="showUpcomingNotice">
|
||||||
</label>
|
__MSG_showUpcomingNotice__
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<div data-type="toggle" data-toggle-type="reverse" data-sync="dontShowNotice">
|
||||||
|
<div class="switch-container">
|
||||||
|
<label class="switch">
|
||||||
|
<input id="dontShowNotice" type="checkbox" checked>
|
||||||
|
<span class="slider round"></span>
|
||||||
|
</label>
|
||||||
|
<label class="switch-label" for="dontShowNotice">
|
||||||
|
__MSG_showSkipNotice__
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div data-type="selector" data-sync="noticeVisibilityMode" data-dependent-on="dontShowNotice">
|
<div data-type="selector" data-sync="noticeVisibilityMode" data-dependent-on="dontShowNotice">
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ export interface NoticeProps {
|
|||||||
idSuffix?: string;
|
idSuffix?: string;
|
||||||
|
|
||||||
fadeIn?: boolean;
|
fadeIn?: boolean;
|
||||||
|
fadeOut?: boolean;
|
||||||
startFaded?: boolean;
|
startFaded?: boolean;
|
||||||
firstColumn?: React.ReactElement[] | React.ReactElement;
|
firstColumn?: React.ReactElement[] | React.ReactElement;
|
||||||
firstRow?: React.ReactElement;
|
firstRow?: React.ReactElement;
|
||||||
@@ -326,7 +327,7 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (countdownTime == 3) {
|
if (countdownTime == 3 && this.props.fadeOut) {
|
||||||
//start fade out animation
|
//start fade out animation
|
||||||
const notice = document.getElementById("sponsorSkipNotice" + this.idSuffix);
|
const notice = document.getElementById("sponsorSkipNotice" + this.idSuffix);
|
||||||
notice?.style.removeProperty("animation");
|
notice?.style.removeProperty("animation");
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import NoticeComponent from "./NoticeComponent";
|
|||||||
import NoticeTextSelectionComponent from "./NoticeTextSectionComponent";
|
import NoticeTextSelectionComponent from "./NoticeTextSectionComponent";
|
||||||
import Utils from "../utils";
|
import Utils from "../utils";
|
||||||
const utils = new Utils();
|
const utils = new Utils();
|
||||||
import { getSkippingText } from "../utils/categoryUtils";
|
import { getSkippingText, getUpcomingText } from "../utils/categoryUtils";
|
||||||
|
|
||||||
import ThumbsUpSvg from "../svg-icons/thumbs_up_svg";
|
import ThumbsUpSvg from "../svg-icons/thumbs_up_svg";
|
||||||
import ThumbsDownSvg from "../svg-icons/thumbs_down_svg";
|
import ThumbsDownSvg from "../svg-icons/thumbs_down_svg";
|
||||||
@@ -28,12 +28,16 @@ export interface SkipNoticeProps {
|
|||||||
|
|
||||||
autoSkip: boolean;
|
autoSkip: boolean;
|
||||||
startReskip?: boolean;
|
startReskip?: boolean;
|
||||||
|
upcomingNotice?: boolean;
|
||||||
// Contains functions and variables from the content script needed by the skip notice
|
// Contains functions and variables from the content script needed by the skip notice
|
||||||
contentContainer: ContentContainer;
|
contentContainer: ContentContainer;
|
||||||
|
|
||||||
closeListener: () => void;
|
closeListener: () => void;
|
||||||
showKeybindHint?: boolean;
|
showKeybindHint?: boolean;
|
||||||
smaller: boolean;
|
smaller: boolean;
|
||||||
|
fadeIn: boolean;
|
||||||
|
|
||||||
|
componentDidMount?: () => void;
|
||||||
|
|
||||||
unskipTime?: number;
|
unskipTime?: number;
|
||||||
}
|
}
|
||||||
@@ -97,9 +101,9 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
|
|||||||
this.autoSkip = props.autoSkip;
|
this.autoSkip = props.autoSkip;
|
||||||
this.contentContainer = props.contentContainer;
|
this.contentContainer = props.contentContainer;
|
||||||
|
|
||||||
const noticeTitle = getSkippingText(this.segments, this.props.autoSkip);
|
const noticeTitle = !this.props.upcomingNotice ? getSkippingText(this.segments, this.props.autoSkip) : getUpcomingText(this.segments);
|
||||||
|
|
||||||
const previousSkipNotices = document.getElementsByClassName("sponsorSkipNoticeParent");
|
const previousSkipNotices = document.querySelectorAll(".sponsorSkipNoticeParent:not(.sponsorSkipUpcomingNotice)");
|
||||||
this.amountOfPreviousNotices = previousSkipNotices.length;
|
this.amountOfPreviousNotices = previousSkipNotices.length;
|
||||||
// If there is at least one already in the first slot
|
// If there is at least one already in the first slot
|
||||||
this.showInSecondSlot = previousSkipNotices.length > 0 && [...previousSkipNotices].some(notice => !notice.classList.contains("secondSkipNotice"));
|
this.showInSecondSlot = previousSkipNotices.length > 0 && [...previousSkipNotices].some(notice => !notice.classList.contains("secondSkipNotice"));
|
||||||
@@ -171,12 +175,7 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
|
|||||||
noticeStyle.transform = "scale(0.8) translate(10%, 10%)";
|
noticeStyle.transform = "scale(0.8) translate(10%, 10%)";
|
||||||
}
|
}
|
||||||
|
|
||||||
// If it started out as smaller, always keep the
|
const firstColumn = this.getSkipButton(0);
|
||||||
// skip button there
|
|
||||||
const showFirstSkipButton = this.props.smaller || this.segments[0].actionType === ActionType.Mute;
|
|
||||||
const firstColumn = showFirstSkipButton ? (
|
|
||||||
this.getSkipButton(0)
|
|
||||||
) : null;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NoticeComponent
|
<NoticeComponent
|
||||||
@@ -184,7 +183,8 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
|
|||||||
amountOfPreviousNotices={this.amountOfPreviousNotices}
|
amountOfPreviousNotices={this.amountOfPreviousNotices}
|
||||||
showInSecondSlot={this.showInSecondSlot}
|
showInSecondSlot={this.showInSecondSlot}
|
||||||
idSuffix={this.idSuffix}
|
idSuffix={this.idSuffix}
|
||||||
fadeIn={true}
|
fadeIn={this.props.fadeIn}
|
||||||
|
fadeOut={!this.props.upcomingNotice}
|
||||||
startFaded={Config.config.noticeVisibilityMode >= NoticeVisbilityMode.FadedForAll
|
startFaded={Config.config.noticeVisibilityMode >= NoticeVisbilityMode.FadedForAll
|
||||||
|| (Config.config.noticeVisibilityMode >= NoticeVisbilityMode.FadedForAutoSkip && this.autoSkip)}
|
|| (Config.config.noticeVisibilityMode >= NoticeVisbilityMode.FadedForAutoSkip && this.autoSkip)}
|
||||||
timed={true}
|
timed={true}
|
||||||
@@ -197,12 +197,20 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
|
|||||||
logoFill={Config.config.barTypes[this.segments[0].category].color}
|
logoFill={Config.config.barTypes[this.segments[0].category].color}
|
||||||
limitWidth={true}
|
limitWidth={true}
|
||||||
firstColumn={firstColumn}
|
firstColumn={firstColumn}
|
||||||
|
dontPauseCountdown={!!this.props.upcomingNotice}
|
||||||
bottomRow={[...this.getMessageBoxes(), ...this.getBottomRow() ]}
|
bottomRow={[...this.getMessageBoxes(), ...this.getBottomRow() ]}
|
||||||
|
extraClass={this.props.upcomingNotice ? "sponsorSkipUpcomingNotice" : ""}
|
||||||
onMouseEnter={() => this.onMouseEnter() } >
|
onMouseEnter={() => this.onMouseEnter() } >
|
||||||
</NoticeComponent>
|
</NoticeComponent>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentDidMount(): void {
|
||||||
|
if (this.props.componentDidMount) {
|
||||||
|
this.props.componentDidMount();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
getBottomRow(): JSX.Element[] {
|
getBottomRow(): JSX.Element[] {
|
||||||
return [
|
return [
|
||||||
/* Bottom Row */
|
/* Bottom Row */
|
||||||
@@ -365,8 +373,10 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
|
|||||||
style.minWidth = "100px";
|
style.minWidth = "100px";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const showSkipButton = (buttonIndex !== 0 || this.props.smaller || this.segments[0].actionType === ActionType.Mute) && !this.props.upcomingNotice;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span className="sponsorSkipNoticeUnskipSection">
|
<span className="sponsorSkipNoticeUnskipSection" style={{ visibility: !showSkipButton ? "hidden" : null }}>
|
||||||
<button id={"sponsorSkipUnskipButton" + this.idSuffix}
|
<button id={"sponsorSkipUnskipButton" + this.idSuffix}
|
||||||
className="sponsorSkipObject sponsorSkipNoticeButton"
|
className="sponsorSkipObject sponsorSkipNoticeButton"
|
||||||
style={style}
|
style={style}
|
||||||
@@ -420,7 +430,7 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
|
|||||||
}
|
}
|
||||||
|
|
||||||
onMouseEnter(): void {
|
onMouseEnter(): void {
|
||||||
if (this.state.smaller) {
|
if (this.state.smaller && !this.props.upcomingNotice) {
|
||||||
this.setState({
|
this.setState({
|
||||||
smaller: false
|
smaller: false
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ interface SBConfig {
|
|||||||
trackDownvotes: boolean;
|
trackDownvotes: boolean;
|
||||||
trackDownvotesInPrivate: boolean;
|
trackDownvotesInPrivate: boolean;
|
||||||
dontShowNotice: boolean;
|
dontShowNotice: boolean;
|
||||||
|
showUpcomingNotice: boolean;
|
||||||
noticeVisibilityMode: NoticeVisbilityMode;
|
noticeVisibilityMode: NoticeVisbilityMode;
|
||||||
hideVideoPlayerControls: boolean;
|
hideVideoPlayerControls: boolean;
|
||||||
hideInfoButtonPlayerControls: boolean;
|
hideInfoButtonPlayerControls: boolean;
|
||||||
@@ -293,6 +294,7 @@ const syncDefaults = {
|
|||||||
trackDownvotes: true,
|
trackDownvotes: true,
|
||||||
trackDownvotesInPrivate: false,
|
trackDownvotesInPrivate: false,
|
||||||
dontShowNotice: false,
|
dontShowNotice: false,
|
||||||
|
showUpcomingNotice: false,
|
||||||
noticeVisibilityMode: NoticeVisbilityMode.FadedForAutoSkip,
|
noticeVisibilityMode: NoticeVisbilityMode.FadedForAutoSkip,
|
||||||
hideVideoPlayerControls: false,
|
hideVideoPlayerControls: false,
|
||||||
hideInfoButtonPlayerControls: false,
|
hideInfoButtonPlayerControls: false,
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import Utils from "./utils";
|
|||||||
import PreviewBar, { PreviewBarSegment } from "./js-components/previewBar";
|
import PreviewBar, { PreviewBarSegment } from "./js-components/previewBar";
|
||||||
import SkipNotice from "./render/SkipNotice";
|
import SkipNotice from "./render/SkipNotice";
|
||||||
import SkipNoticeComponent from "./components/SkipNoticeComponent";
|
import SkipNoticeComponent from "./components/SkipNoticeComponent";
|
||||||
|
import UpcomingNotice from "./render/UpcomingNotice";
|
||||||
import SubmissionNotice from "./render/SubmissionNotice";
|
import SubmissionNotice from "./render/SubmissionNotice";
|
||||||
import { Message, MessageResponse, VoteResponse } from "./messageTypes";
|
import { Message, MessageResponse, VoteResponse } from "./messageTypes";
|
||||||
import { SkipButtonControlBar } from "./js-components/skipButtonControlBar";
|
import { SkipButtonControlBar } from "./js-components/skipButtonControlBar";
|
||||||
@@ -77,6 +78,7 @@ let importingChaptersWaitingForFocus = false;
|
|||||||
let importingChaptersWaiting = false;
|
let importingChaptersWaiting = false;
|
||||||
// List of open skip notices
|
// List of open skip notices
|
||||||
const skipNotices: SkipNotice[] = [];
|
const skipNotices: SkipNotice[] = [];
|
||||||
|
let upcomingNotice: UpcomingNotice | null = null;
|
||||||
let activeSkipKeybindElement: ToggleSkippable = null;
|
let activeSkipKeybindElement: ToggleSkippable = null;
|
||||||
let retryFetchTimeout: NodeJS.Timeout = null;
|
let retryFetchTimeout: NodeJS.Timeout = null;
|
||||||
let shownSegmentFailedToFetchWarning = false;
|
let shownSegmentFailedToFetchWarning = false;
|
||||||
@@ -107,6 +109,7 @@ const lastNextChapterKeybind = {
|
|||||||
let currentSkipSchedule: NodeJS.Timeout = null;
|
let currentSkipSchedule: NodeJS.Timeout = null;
|
||||||
let currentSkipInterval: NodeJS.Timeout = null;
|
let currentSkipInterval: NodeJS.Timeout = null;
|
||||||
let currentVirtualTimeInterval: NodeJS.Timeout = null;
|
let currentVirtualTimeInterval: NodeJS.Timeout = null;
|
||||||
|
let currentUpcomingSchedule: NodeJS.Timeout = null;
|
||||||
|
|
||||||
/** Has the sponsor been skipped */
|
/** Has the sponsor been skipped */
|
||||||
let sponsorSkipped: boolean[] = [];
|
let sponsorSkipped: boolean[] = [];
|
||||||
@@ -426,6 +429,11 @@ function resetValues() {
|
|||||||
skipNotices.pop()?.close();
|
skipNotices.pop()?.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (upcomingNotice) {
|
||||||
|
upcomingNotice.close();
|
||||||
|
upcomingNotice = null;
|
||||||
|
}
|
||||||
|
|
||||||
hideDeArrowPromotion();
|
hideDeArrowPromotion();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -511,7 +519,7 @@ function handleMobileControlsMutations(): void {
|
|||||||
function getPreviewBarAttachElement(): HTMLElement | null {
|
function getPreviewBarAttachElement(): HTMLElement | null {
|
||||||
const progressElementOptions = [{
|
const progressElementOptions = [{
|
||||||
// For newer mobile YouTube (Sept 2024)
|
// For newer mobile YouTube (Sept 2024)
|
||||||
selector: ".YtChapteredProgressBarHost",
|
selector: ".YtProgressBarLineHost, .YtChapteredProgressBarHost",
|
||||||
isVisibleCheck: true
|
isVisibleCheck: true
|
||||||
}, {
|
}, {
|
||||||
// For newer mobile YouTube (May 2024)
|
// For newer mobile YouTube (May 2024)
|
||||||
@@ -606,6 +614,11 @@ function cancelSponsorSchedule(): void {
|
|||||||
clearInterval(currentSkipInterval);
|
clearInterval(currentSkipInterval);
|
||||||
currentSkipInterval = null;
|
currentSkipInterval = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (currentUpcomingSchedule !== null) {
|
||||||
|
clearTimeout(currentUpcomingSchedule);
|
||||||
|
currentUpcomingSchedule = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -787,7 +800,21 @@ async function startSponsorSchedule(includeIntersectingSegments = false, current
|
|||||||
|
|
||||||
const offset = (isFirefoxOrSafari() && !isSafari() ? 600 : 150);
|
const offset = (isFirefoxOrSafari() && !isSafari() ? 600 : 150);
|
||||||
// Schedule for right before to be more precise than normal timeout
|
// Schedule for right before to be more precise than normal timeout
|
||||||
currentSkipSchedule = setTimeout(skippingFunction, Math.max(0, delayTime - offset));
|
const offsetDelayTime = Math.max(0, delayTime - offset);
|
||||||
|
currentSkipSchedule = setTimeout(skippingFunction, offsetDelayTime);
|
||||||
|
|
||||||
|
// Show the notice only if the segment hasn't already started
|
||||||
|
if (Config.config.showUpcomingNotice && getCurrentTime() < skippingSegments[0].segment[0]) {
|
||||||
|
const maxPopupTime = 3000;
|
||||||
|
const timeUntilPopup = Math.max(0, offsetDelayTime - maxPopupTime);
|
||||||
|
const popupTime = Math.min(maxPopupTime, timeUntilPopup);
|
||||||
|
const autoSkip = shouldAutoSkip(skippingSegments[0]);
|
||||||
|
|
||||||
|
if (timeUntilPopup > 0) {
|
||||||
|
if (currentUpcomingSchedule) clearTimeout(currentUpcomingSchedule);
|
||||||
|
currentUpcomingSchedule = setTimeout(createUpcomingNotice, timeUntilPopup, skippingSegments, popupTime, autoSkip);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -850,8 +877,7 @@ function incorrectVideoCheck(videoID?: string, sponsorTime?: SponsorTime): boole
|
|||||||
let playbackRateCheckInterval: NodeJS.Timeout | null = null;
|
let playbackRateCheckInterval: NodeJS.Timeout | null = null;
|
||||||
let lastPlaybackSpeed = 1;
|
let lastPlaybackSpeed = 1;
|
||||||
let setupVideoListenersFirstTime = true;
|
let setupVideoListenersFirstTime = true;
|
||||||
function setupVideoListeners() {
|
function setupVideoListeners(video: HTMLVideoElement) {
|
||||||
const video = getVideo();
|
|
||||||
if (!video) return; // Maybe video became invisible
|
if (!video) return; // Maybe video became invisible
|
||||||
|
|
||||||
//wait until it is loaded
|
//wait until it is loaded
|
||||||
@@ -1433,10 +1459,10 @@ async function channelIDChange(channelIDInfo: ChannelIDInfo) {
|
|||||||
if (Config.config.forceChannelCheck && sponsorTimes?.length > 0) startSkipScheduleCheckingForStartSponsors();
|
if (Config.config.forceChannelCheck && sponsorTimes?.length > 0) startSkipScheduleCheckingForStartSponsors();
|
||||||
}
|
}
|
||||||
|
|
||||||
function videoElementChange(newVideo: boolean): void {
|
function videoElementChange(newVideo: boolean, video: HTMLVideoElement): void {
|
||||||
waitFor(() => Config.isReady()).then(() => {
|
waitFor(() => Config.isReady()).then(() => {
|
||||||
if (newVideo) {
|
if (newVideo) {
|
||||||
setupVideoListeners();
|
setupVideoListeners(video);
|
||||||
setupSkipButtonControlBar();
|
setupSkipButtonControlBar();
|
||||||
setupCategoryPill();
|
setupCategoryPill();
|
||||||
}
|
}
|
||||||
@@ -1721,7 +1747,7 @@ function skipToTime({v, skipTime, skippingSegments, openNotice, forceAutoSkip, u
|
|||||||
|
|
||||||
if (autoSkip && Config.config.audioNotificationOnSkip
|
if (autoSkip && Config.config.audioNotificationOnSkip
|
||||||
&& !isSubmittingSegment && !getVideo()?.muted) {
|
&& !isSubmittingSegment && !getVideo()?.muted) {
|
||||||
const beep = new Audio(chrome.runtime.getURL("icons/beep.ogg"));
|
const beep = new Audio(chrome.runtime.getURL("icons/beep.oga"));
|
||||||
beep.volume = getVideo().volume * 0.1;
|
beep.volume = getVideo().volume * 0.1;
|
||||||
const oldMetadata = navigator.mediaSession.metadata
|
const oldMetadata = navigator.mediaSession.metadata
|
||||||
beep.play();
|
beep.play();
|
||||||
@@ -1774,7 +1800,12 @@ function createSkipNotice(skippingSegments: SponsorTime[], autoSkip: boolean, un
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const newSkipNotice = new SkipNotice(skippingSegments, autoSkip, skipNoticeContentContainer, unskipTime, startReskip);
|
const upcomingNoticeShown = !!upcomingNotice && !upcomingNotice.closed;
|
||||||
|
|
||||||
|
const newSkipNotice = new SkipNotice(skippingSegments, autoSkip, skipNoticeContentContainer, () => {
|
||||||
|
upcomingNotice?.close();
|
||||||
|
upcomingNotice = null;
|
||||||
|
}, unskipTime, startReskip, upcomingNoticeShown);
|
||||||
if (isOnMobileYouTube() || Config.config.skipKeybind == null) newSkipNotice.setShowKeybindHint(false);
|
if (isOnMobileYouTube() || Config.config.skipKeybind == null) newSkipNotice.setShowKeybindHint(false);
|
||||||
skipNotices.push(newSkipNotice);
|
skipNotices.push(newSkipNotice);
|
||||||
|
|
||||||
@@ -1782,6 +1813,17 @@ function createSkipNotice(skippingSegments: SponsorTime[], autoSkip: boolean, un
|
|||||||
activeSkipKeybindElement = newSkipNotice;
|
activeSkipKeybindElement = newSkipNotice;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function createUpcomingNotice(skippingSegments: SponsorTime[], timeLeft: number, autoSkip: boolean): void {
|
||||||
|
if (upcomingNotice
|
||||||
|
&& !upcomingNotice.closed
|
||||||
|
&& upcomingNotice.sameNotice(skippingSegments)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
upcomingNotice?.close();
|
||||||
|
upcomingNotice = new UpcomingNotice(skippingSegments, skipNoticeContentContainer, timeLeft, autoSkip);
|
||||||
|
}
|
||||||
|
|
||||||
function unskipSponsorTime(segment: SponsorTime, unskipTime: number = null, forceSeek = false) {
|
function unskipSponsorTime(segment: SponsorTime, unskipTime: number = null, forceSeek = false) {
|
||||||
if (segment.actionType === ActionType.Mute) {
|
if (segment.actionType === ActionType.Mute) {
|
||||||
getVideo().muted = false;
|
getVideo().muted = false;
|
||||||
@@ -2524,7 +2566,7 @@ function addHotkeyListener(): void {
|
|||||||
|
|
||||||
function hotkeyListener(e: KeyboardEvent): void {
|
function hotkeyListener(e: KeyboardEvent): void {
|
||||||
if ((["textarea", "input"].includes(document.activeElement?.tagName?.toLowerCase())
|
if ((["textarea", "input"].includes(document.activeElement?.tagName?.toLowerCase())
|
||||||
|| document.activeElement?.["contentEditable"] === "true"
|
|| (document.activeElement as HTMLElement)?.isContentEditable
|
||||||
|| document.activeElement?.id?.toLowerCase()?.match(/editable|input/))
|
|| document.activeElement?.id?.toLowerCase()?.match(/editable|input/))
|
||||||
&& document.hasFocus()) return;
|
&& document.hasFocus()) return;
|
||||||
|
|
||||||
@@ -2562,7 +2604,9 @@ function hotkeyListener(e: KeyboardEvent): void {
|
|||||||
for (let i = 0; i < skipNotices.length; i++) {
|
for (let i = 0; i < skipNotices.length; i++) {
|
||||||
skipNotices.pop().close();
|
skipNotices.pop().close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
upcomingNotice?.close();
|
||||||
|
upcomingNotice = null;
|
||||||
return;
|
return;
|
||||||
} else if (keybindEquals(key, startSponsorKey)) {
|
} else if (keybindEquals(key, startSponsorKey)) {
|
||||||
startOrEndTimingNewSegment();
|
startOrEndTimingNewSegment();
|
||||||
@@ -2634,11 +2678,11 @@ function showTimeWithoutSkips(skippedDuration: number): void {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// YouTube player time display
|
// YouTube player time display
|
||||||
const displayClass =
|
const selector =
|
||||||
isOnInvidious() ? "vjs-duration" :
|
isOnInvidious() ? ".vjs-duration" :
|
||||||
isOnMobileYouTube() ? "ytm-time-display" :
|
isOnMobileYouTube() ? ".YtwPlayerTimeDisplayContent" :
|
||||||
"ytp-time-display.notranslate";
|
".ytp-time-display.notranslate .ytp-time-wrapper";
|
||||||
const display = document.querySelector(`.${displayClass}`);
|
const display = document.querySelector(selector);
|
||||||
if (!display) return;
|
if (!display) return;
|
||||||
|
|
||||||
const durationID = "sponsorBlockDurationAfterSkips";
|
const durationID = "sponsorBlockDurationAfterSkips";
|
||||||
@@ -2648,9 +2692,13 @@ function showTimeWithoutSkips(skippedDuration: number): void {
|
|||||||
if (duration === null) {
|
if (duration === null) {
|
||||||
duration = document.createElement('span');
|
duration = document.createElement('span');
|
||||||
duration.id = durationID;
|
duration.id = durationID;
|
||||||
if (!isOnInvidious()) duration.classList.add(displayClass);
|
|
||||||
|
|
||||||
display.appendChild(duration);
|
if (isOnMobileYouTube()) {
|
||||||
|
duration.style.paddingLeft = "4px";
|
||||||
|
display.insertBefore(duration, display.lastChild);
|
||||||
|
} else {
|
||||||
|
display.appendChild(duration);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const durationAfterSkips = getFormattedTime(getVideoDuration() - skippedDuration);
|
const durationAfterSkips = getFormattedTime(getVideoDuration() - skippedDuration);
|
||||||
|
|||||||
@@ -647,8 +647,21 @@ class PreviewBar {
|
|||||||
if (changedData.scale !== null) {
|
if (changedData.scale !== null) {
|
||||||
const transformScale = (changedData.scale) / progressBar.clientWidth;
|
const transformScale = (changedData.scale) / progressBar.clientWidth;
|
||||||
|
|
||||||
|
const scale = Math.max(0, Math.min(1 - calculatedLeft, (transformScale - cursor) / fullSectionWidth - calculatedLeft));
|
||||||
customChangedElement.style.transform =
|
customChangedElement.style.transform =
|
||||||
`scaleX(${Math.max(0, Math.min(1 - calculatedLeft, (transformScale - cursor) / fullSectionWidth - calculatedLeft))}`;
|
`scaleX(${scale})`;
|
||||||
|
if (customChangedElement.style.backgroundSize) {
|
||||||
|
const backgroundSize = Math.max(changedData.scale / scale, fullSectionWidth * progressBar.clientWidth);
|
||||||
|
customChangedElement.style.backgroundSize = `${backgroundSize}px`;
|
||||||
|
|
||||||
|
if (changedData.scale < (cursor + fullSectionWidth) * progressBar.clientWidth) {
|
||||||
|
customChangedElement.style.backgroundPosition = `-${backgroundSize - fullSectionWidth * progressBar.clientWidth}px`;
|
||||||
|
} else {
|
||||||
|
// Passed this section
|
||||||
|
customChangedElement.style.backgroundPosition = `-${cursor * progressBar.clientWidth}px`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (firstUpdate) {
|
if (firstUpdate) {
|
||||||
customChangedElement.style.transition = "none";
|
customChangedElement.style.transition = "none";
|
||||||
setTimeout(() => customChangedElement.style.removeProperty("transition"), 50);
|
setTimeout(() => customChangedElement.style.removeProperty("transition"), 50);
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ class SkipNotice {
|
|||||||
skipNoticeRef: React.MutableRefObject<SkipNoticeComponent>;
|
skipNoticeRef: React.MutableRefObject<SkipNoticeComponent>;
|
||||||
root: Root;
|
root: Root;
|
||||||
|
|
||||||
constructor(segments: SponsorTime[], autoSkip = false, contentContainer: ContentContainer, unskipTime: number = null, startReskip = false) {
|
constructor(segments: SponsorTime[], autoSkip = false, contentContainer: ContentContainer, componentDidMount: () => void, unskipTime: number = null, startReskip = false, upcomingNoticeShown: boolean) {
|
||||||
this.skipNoticeRef = React.createRef();
|
this.skipNoticeRef = React.createRef();
|
||||||
|
|
||||||
this.segments = segments;
|
this.segments = segments;
|
||||||
@@ -53,7 +53,9 @@ class SkipNotice {
|
|||||||
closeListener={() => this.close()}
|
closeListener={() => this.close()}
|
||||||
smaller={Config.config.noticeVisibilityMode >= NoticeVisbilityMode.MiniForAll
|
smaller={Config.config.noticeVisibilityMode >= NoticeVisbilityMode.MiniForAll
|
||||||
|| (Config.config.noticeVisibilityMode >= NoticeVisbilityMode.MiniForAutoSkip && autoSkip)}
|
|| (Config.config.noticeVisibilityMode >= NoticeVisbilityMode.MiniForAutoSkip && autoSkip)}
|
||||||
unskipTime={unskipTime} />
|
fadeIn={!upcomingNoticeShown}
|
||||||
|
unskipTime={unskipTime}
|
||||||
|
componentDidMount={componentDidMount} />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
66
src/render/UpcomingNotice.tsx
Normal file
66
src/render/UpcomingNotice.tsx
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import { createRoot, Root } from "react-dom/client";
|
||||||
|
import { ContentContainer, SponsorTime } from "../types";
|
||||||
|
|
||||||
|
import Utils from "../utils";
|
||||||
|
import SkipNoticeComponent from "../components/SkipNoticeComponent";
|
||||||
|
const utils = new Utils();
|
||||||
|
|
||||||
|
class UpcomingNotice {
|
||||||
|
segments: SponsorTime[];
|
||||||
|
// Contains functions and variables from the content script needed by the skip notice
|
||||||
|
contentContainer: ContentContainer;
|
||||||
|
|
||||||
|
noticeElement: HTMLDivElement;
|
||||||
|
|
||||||
|
upcomingNoticeRef: React.MutableRefObject<SkipNoticeComponent>;
|
||||||
|
root: Root;
|
||||||
|
|
||||||
|
closed = false;
|
||||||
|
|
||||||
|
constructor(segments: SponsorTime[], contentContainer: ContentContainer, timeLeft: number, autoSkip: boolean) {
|
||||||
|
this.upcomingNoticeRef = React.createRef();
|
||||||
|
|
||||||
|
this.segments = segments;
|
||||||
|
this.contentContainer = contentContainer;
|
||||||
|
|
||||||
|
const referenceNode = utils.findReferenceNode();
|
||||||
|
|
||||||
|
this.noticeElement = document.createElement("div");
|
||||||
|
this.noticeElement.className = "sponsorSkipNoticeContainer";
|
||||||
|
|
||||||
|
referenceNode.prepend(this.noticeElement);
|
||||||
|
|
||||||
|
this.root = createRoot(this.noticeElement);
|
||||||
|
this.root.render(
|
||||||
|
<SkipNoticeComponent segments={segments}
|
||||||
|
autoSkip={autoSkip}
|
||||||
|
upcomingNotice={true}
|
||||||
|
contentContainer={contentContainer}
|
||||||
|
ref={this.upcomingNoticeRef}
|
||||||
|
closeListener={() => this.close()}
|
||||||
|
smaller={true}
|
||||||
|
fadeIn={true}
|
||||||
|
unskipTime={timeLeft} />
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(): void {
|
||||||
|
this.root.unmount();
|
||||||
|
this.noticeElement.remove();
|
||||||
|
|
||||||
|
this.closed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
sameNotice(segments: SponsorTime[]): boolean {
|
||||||
|
if (segments.length !== this.segments.length) return false;
|
||||||
|
|
||||||
|
for (let i = 0; i < segments.length; i++) {
|
||||||
|
if (segments[i].UUID !== this.segments[i].UUID) return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default UpcomingNotice;
|
||||||
@@ -36,6 +36,15 @@ export function getSkippingText(segments: SponsorTime[], autoSkip: boolean): str
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getUpcomingText(segments: SponsorTime[]): string {
|
||||||
|
const categoryName = chrome.i18n.getMessage(segments.length > 1 ? "multipleSegments"
|
||||||
|
: "category_" + segments[0].category + "_short") || chrome.i18n.getMessage("category_" + segments[0].category);
|
||||||
|
|
||||||
|
const messageId = "upcoming";
|
||||||
|
return chrome.i18n.getMessage(messageId).replace("{0}", categoryName);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export function getCategorySuffix(category: Category): string {
|
export function getCategorySuffix(category: Category): string {
|
||||||
if (category.startsWith("poi_")) {
|
if (category.startsWith("poi_")) {
|
||||||
return "_POI";
|
return "_POI";
|
||||||
@@ -51,5 +60,4 @@ export function getCategorySuffix(category: Category): string {
|
|||||||
export function shortCategoryName(categoryName: string): string {
|
export function shortCategoryName(categoryName: string): string {
|
||||||
return chrome.i18n.getMessage("category_" + categoryName + "_short") || chrome.i18n.getMessage("category_" + categoryName);
|
return chrome.i18n.getMessage("category_" + categoryName + "_short") || chrome.i18n.getMessage("category_" + categoryName);
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DEFAULT_CATEGORY = "chooseACategory";
|
export const DEFAULT_CATEGORY = "chooseACategory";
|
||||||
@@ -64,8 +64,18 @@ function thumbnailHoverListener(e: MouseEvent) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getLink(thumbnail: HTMLImageElement): HTMLAnchorElement | null {
|
||||||
|
if (isOnInvidious()) {
|
||||||
|
return thumbnail.parentElement as HTMLAnchorElement | null;
|
||||||
|
} else if (thumbnail.nodeName.toLowerCase() === "yt-thumbnail-view-model") {
|
||||||
|
return thumbnail.closest("yt-lockup-view-model")?.querySelector("a.yt-lockup-metadata-view-model-wiz__title");
|
||||||
|
} else {
|
||||||
|
return thumbnail.querySelector("#thumbnail");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function extractVideoID(thumbnail: HTMLImageElement): VideoID | null {
|
function extractVideoID(thumbnail: HTMLImageElement): VideoID | null {
|
||||||
const link = (isOnInvidious() ? thumbnail.parentElement : thumbnail.querySelector("#thumbnail")) as HTMLAnchorElement
|
const link = getLink(thumbnail);
|
||||||
if (!link || link.nodeName !== "A" || !link.href) return null; // no link found
|
if (!link || link.nodeName !== "A" || !link.href) return null; // no link found
|
||||||
|
|
||||||
return parseYouTubeVideoIDFromURL(link.href)?.videoID;
|
return parseYouTubeVideoIDFromURL(link.href)?.videoID;
|
||||||
|
|||||||
Reference in New Issue
Block a user