mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-10 13:37:04 +03:00
Merge branch 'master' of https://github.com/ajayyy/SponsorBlock into pr/Acors24/2086
This commit is contained in:
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
|
||||||
|
|||||||
79
.github/workflows/release.yml
vendored
79
.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
|
||||||
@@ -36,20 +36,6 @@ jobs:
|
|||||||
|
|
||||||
- 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
|
||||||
@@ -63,31 +49,18 @@ jobs:
|
|||||||
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
|
||||||
|
- run: mkdir ./builds
|
||||||
- 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
|
||||||
|
|||||||
@@ -7,8 +7,7 @@ This file should not be shipped with the extension
|
|||||||
/*
|
/*
|
||||||
Criteria for inclusion:
|
Criteria for inclusion:
|
||||||
Invidious
|
Invidious
|
||||||
- 30d uptime >= 90%
|
- uptime >= 80%
|
||||||
- available for at least 80/90 days
|
|
||||||
- must have been up for at least 90 days
|
- must have been up for at least 90 days
|
||||||
- HTTPS only
|
- HTTPS only
|
||||||
- url includes name (this is to avoid redirects)
|
- url includes name (this is to avoid redirects)
|
||||||
|
|||||||
@@ -1,31 +1,34 @@
|
|||||||
import { InvidiousInstance, instanceMap } from "./invidiousType"
|
import { InvidiousInstance, monitor } from "./invidiousType"
|
||||||
|
|
||||||
import * as data from "../ci/invidious_instances.json";
|
import * as data from "../ci/invidious_instances.json";
|
||||||
|
|
||||||
// only https servers
|
// only https servers
|
||||||
const mapped: instanceMap = data
|
const mapped = (data as InvidiousInstance[])
|
||||||
.filter((i: InvidiousInstance) => i[1]?.type === "https")
|
.filter((i) =>
|
||||||
.map((instance: InvidiousInstance) => {
|
i[1]?.type === "https"
|
||||||
|
&& i[1]?.monitor?.enabled
|
||||||
|
)
|
||||||
|
.map((instance) => {
|
||||||
|
const monitor = instance[1].monitor as monitor;
|
||||||
return {
|
return {
|
||||||
name: instance[0],
|
name: instance[0],
|
||||||
url: instance[1].uri,
|
url: instance[1].uri,
|
||||||
dailyRatios: instance[1].monitor.dailyRatios,
|
uptime: monitor.uptime || 0,
|
||||||
thirtyDayUptime: instance[1]?.monitor["30dRatio"].ratio,
|
down: monitor.down ?? false,
|
||||||
|
created_at: monitor.created_at,
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// reliability and sanity checks
|
// reliability and sanity checks
|
||||||
const reliableCheck = mapped
|
const reliableCheck = mapped
|
||||||
.filter(instance => {
|
.filter(instance => {
|
||||||
// 30d uptime >= 90%
|
const uptime = instance.uptime > 80 && !instance.down;
|
||||||
const thirtyDayUptime = Number(instance.thirtyDayUptime) >= 90;
|
const nameIncluded = instance.url.includes(instance.name);
|
||||||
// available for at least 80/90 days
|
const ninetyDays = 90 * 24 * 60 * 60 * 1000;
|
||||||
const dailyRatioCheck = instance.dailyRatios.filter(status => status.label !== "black");
|
const ninetyDaysAgo = new Date(Date.now() - ninetyDays);
|
||||||
return thirtyDayUptime && dailyRatioCheck.length >= 80;
|
const createdAt = new Date(instance.created_at).getTime() < ninetyDaysAgo.getTime();
|
||||||
|
return uptime && nameIncluded && createdAt;
|
||||||
})
|
})
|
||||||
// url includes name
|
|
||||||
.filter(instance => instance.url.includes(instance.name));
|
|
||||||
|
|
||||||
export function getInvidiousList(): string[] {
|
export const getInvidiousList = (): string[] =>
|
||||||
return reliableCheck.map(instance => instance.name).sort()
|
reliableCheck.map(instance => instance.name).sort()
|
||||||
}
|
|
||||||
@@ -1,26 +1,56 @@
|
|||||||
type ratio = {
|
|
||||||
ratio: string;
|
|
||||||
label: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type instanceMap = {
|
|
||||||
name: string;
|
|
||||||
url: string;
|
|
||||||
dailyRatios: {ratio: string; label: string }[];
|
|
||||||
thirtyDayUptime: string;
|
|
||||||
}[]
|
|
||||||
|
|
||||||
export type InvidiousInstance = [
|
export type InvidiousInstance = [
|
||||||
string,
|
string,
|
||||||
{
|
{
|
||||||
flag: string;
|
flag: string;
|
||||||
region: string;
|
region: string;
|
||||||
stats: null | {
|
stats: null | ivStats;
|
||||||
|
cors: null | boolean;
|
||||||
|
api: null | boolean;
|
||||||
|
type: "https" | "http" | "onion" | "i2p";
|
||||||
|
uri: string;
|
||||||
|
monitor: null | monitor;
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
export type monitor = {
|
||||||
|
token: string;
|
||||||
|
url: string;
|
||||||
|
alias: string;
|
||||||
|
last_status: number;
|
||||||
|
uptime: number;
|
||||||
|
down: boolean;
|
||||||
|
down_since: null | string;
|
||||||
|
up_since: null | string;
|
||||||
|
error: null | string;
|
||||||
|
period: number;
|
||||||
|
apdex_t: number;
|
||||||
|
string_match: string;
|
||||||
|
enabled: boolean;
|
||||||
|
published: boolean;
|
||||||
|
disabled_locations: string[];
|
||||||
|
recipients: string[];
|
||||||
|
last_check_at: string;
|
||||||
|
next_check_at: string;
|
||||||
|
created_at: string;
|
||||||
|
mute_until: null | string;
|
||||||
|
favicon_url: string;
|
||||||
|
custom_headers: Record<string, string>;
|
||||||
|
http_verb: string;
|
||||||
|
http_body: string;
|
||||||
|
ssl: {
|
||||||
|
tested_at: string;
|
||||||
|
expires_at: string;
|
||||||
|
valid: boolean;
|
||||||
|
error: null | string;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export type ivStats = {
|
||||||
version: string;
|
version: string;
|
||||||
software: {
|
software: {
|
||||||
name: string;
|
name: "invidious" | string;
|
||||||
version: string;
|
version: string;
|
||||||
branch: string;
|
branch: "master" | string;
|
||||||
};
|
};
|
||||||
openRegistrations: boolean;
|
openRegistrations: boolean;
|
||||||
usage: {
|
usage: {
|
||||||
@@ -34,21 +64,9 @@ export type InvidiousInstance = [
|
|||||||
updatedAt: number;
|
updatedAt: number;
|
||||||
lastChannelRefreshedAt: number;
|
lastChannelRefreshedAt: number;
|
||||||
};
|
};
|
||||||
|
playback: {
|
||||||
|
totalRequests: number;
|
||||||
|
successfulRequests: number;
|
||||||
|
ratio: number;
|
||||||
};
|
};
|
||||||
cors: boolean | null;
|
}
|
||||||
api: boolean | null;
|
|
||||||
type: "https" | "http" | "onion" | "i2p";
|
|
||||||
uri: string;
|
|
||||||
monitor: null | {
|
|
||||||
monitorId: number;
|
|
||||||
createdAt: number;
|
|
||||||
statusClass: string;
|
|
||||||
name: string;
|
|
||||||
url: string | null;
|
|
||||||
type: "HTTP(s)";
|
|
||||||
dailyRatios: ratio[];
|
|
||||||
"90dRatio": ratio;
|
|
||||||
"30dRatio": ratio;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
]
|
|
||||||
@@ -1 +1 @@
|
|||||||
["www.youtubekids.com","anontube.lvkaszus.pl","inv.citw.lgbt","inv.in.projectsegfau.lt","inv.tux.pizza","inv.zzls.xyz","invidious.asir.dev","invidious.drgns.space","invidious.fdn.fr","invidious.flokinet.to","invidious.io.lol","invidious.lunar.icu","invidious.nerdvpn.de","invidious.no-logs.com","invidious.perennialte.ch","invidious.privacydev.net","invidious.private.coffee","invidious.projectsegfau.lt","invidious.protokolla.fi","invidious.slipfox.xyz","iv.datura.network","iv.ggtyler.dev","iv.melmac.space","iv.nboeck.de","onion.tube","vid.priv.au","vid.puffyan.us","yewtu.be","yt.artemislena.eu","yt.cdaut.de","yt.drgnz.club","yt.oelrichsgarcia.de"]
|
["www.youtubekids.com","inv.nadeko.net","inv.tux.pizza","invidious.adminforge.de","invidious.jing.rocks","invidious.nerdvpn.de","invidious.perennialte.ch","invidious.privacyredirect.com","invidious.reallyaweso.me","invidious.yourdevice.ch","iv.ggtyler.dev","iv.nboeck.de","yewtu.be"]
|
||||||
@@ -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",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"browser_specific_settings": {
|
"browser_specific_settings": {
|
||||||
"gecko": {
|
"gecko": {
|
||||||
"id": "sponsorBlocker@ajay.app",
|
"id": "sponsorBlocker@ajay.app",
|
||||||
"strict_min_version": "56.0"
|
"strict_min_version": "102.0"
|
||||||
},
|
},
|
||||||
"gecko_android": {
|
"gecko_android": {
|
||||||
"strict_min_version": "113.0"
|
"strict_min_version": "113.0"
|
||||||
|
|||||||
@@ -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.7",
|
"version": "5.9.6",
|
||||||
"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: 3c7787897e...6770087140
3150
package-lock.json
generated
3150
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -38,14 +38,14 @@
|
|||||||
"ts-loader": "^9.4.2",
|
"ts-loader": "^9.4.2",
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.1",
|
||||||
"typescript": "4.9",
|
"typescript": "4.9",
|
||||||
"web-ext": "^7.10.0",
|
"web-ext": "^8.2.0",
|
||||||
"webpack": "^5.75.0",
|
"webpack": "^5.94.0",
|
||||||
"webpack-cli": "^4.10.0",
|
"webpack-cli": "^4.10.0",
|
||||||
"webpack-merge": "^5.8.0"
|
"webpack-merge": "^5.8.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"web-run": "npm run web-run:chrome",
|
"web-run": "npm run web-run:chrome",
|
||||||
"web-sign": "web-ext sign -s dist",
|
"web-sign": "web-ext sign --channel unlisted -s dist",
|
||||||
"web-run:firefox": "cd dist && web-ext run --start-url https://addons.mozilla.org/firefox/addon/ublock-origin/",
|
"web-run:firefox": "cd dist && web-ext run --start-url https://addons.mozilla.org/firefox/addon/ublock-origin/",
|
||||||
"web-run:firefox-android": "cd dist && web-ext run -t firefox-android --firefox-apk org.mozilla.fenix",
|
"web-run:firefox-android": "cd dist && web-ext run -t firefox-android --firefox-apk org.mozilla.fenix",
|
||||||
"web-run:chrome": "cd dist && web-ext run --start-url https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm -t chromium",
|
"web-run:chrome": "cd dist && web-ext run --start-url https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm -t chromium",
|
||||||
|
|||||||
Submodule public/_locales updated: 746bc3c844...ae9a9d8dc1
@@ -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 {
|
||||||
|
|||||||
@@ -196,6 +196,8 @@
|
|||||||
<a href="https://discord.gg/SponsorBlock" target="_blank" rel="noopener">Discord</a>
|
<a href="https://discord.gg/SponsorBlock" target="_blank" rel="noopener">Discord</a>
|
||||||
<a href="https://matrix.to/#/#sponsor:ajay.app?via=ajay.app&via=matrix.org&via=mozilla.org" target="_blank" rel="noopener">Matrix</a>
|
<a href="https://matrix.to/#/#sponsor:ajay.app?via=ajay.app&via=matrix.org&via=mozilla.org" target="_blank" rel="noopener">Matrix</a>
|
||||||
<a href="https://sponsor.ajay.app/donate" target="_blank" rel="noopener" id="sbDonate">__MSG_Donate__</a>
|
<a href="https://sponsor.ajay.app/donate" target="_blank" rel="noopener" id="sbDonate">__MSG_Donate__</a>
|
||||||
|
<br />
|
||||||
|
<a id="debugLogs">__MSG_copyDebugLogs__</a>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<button id="showNoticeAgain" style="display: none">__MSG_showNotice__</button>
|
<button id="showNoticeAgain" style="display: none">__MSG_showNotice__</button>
|
||||||
|
|||||||
@@ -480,3 +480,25 @@ const localDefaults = {
|
|||||||
|
|
||||||
const Config = new ConfigClass(syncDefaults, localDefaults, migrateOldSyncFormats);
|
const Config = new ConfigClass(syncDefaults, localDefaults, migrateOldSyncFormats);
|
||||||
export default Config;
|
export default Config;
|
||||||
|
|
||||||
|
export function generateDebugDetails(): string {
|
||||||
|
// Build output debug information object
|
||||||
|
const output = {
|
||||||
|
debug: {
|
||||||
|
userAgent: navigator.userAgent,
|
||||||
|
platform: navigator.platform,
|
||||||
|
language: navigator.language,
|
||||||
|
extensionVersion: chrome.runtime.getManifest().version
|
||||||
|
},
|
||||||
|
config: JSON.parse(JSON.stringify(Config.cachedSyncConfig)) // Deep clone config object
|
||||||
|
};
|
||||||
|
|
||||||
|
// Sanitise sensitive user config values
|
||||||
|
delete output.config.userID;
|
||||||
|
output.config.serverAddress = (output.config.serverAddress === CompileConfig.serverAddress)
|
||||||
|
? "Default server address" : "Custom server address";
|
||||||
|
output.config.invidiousInstances = output.config.invidiousInstances.length;
|
||||||
|
output.config.whitelistedChannels = output.config.whitelistedChannels.length;
|
||||||
|
|
||||||
|
return JSON.stringify(output, null, 4);
|
||||||
|
}
|
||||||
148
src/content.ts
148
src/content.ts
@@ -51,6 +51,7 @@ import { asyncRequestToServer } from "./utils/requests";
|
|||||||
import { isMobileControlsOpen } from "./utils/mobileUtils";
|
import { isMobileControlsOpen } from "./utils/mobileUtils";
|
||||||
import { defaultPreviewTime } from "./utils/constants";
|
import { defaultPreviewTime } from "./utils/constants";
|
||||||
import { onVideoPage } from "../maze-utils/src/pageInfo";
|
import { onVideoPage } from "../maze-utils/src/pageInfo";
|
||||||
|
import { getSegmentsForVideo } from "./utils/segmentData";
|
||||||
|
|
||||||
cleanPage();
|
cleanPage();
|
||||||
|
|
||||||
@@ -75,7 +76,6 @@ let sponsorTimes: SponsorTime[] = [];
|
|||||||
let existingChaptersImported = false;
|
let existingChaptersImported = false;
|
||||||
let importingChaptersWaitingForFocus = false;
|
let importingChaptersWaitingForFocus = false;
|
||||||
let importingChaptersWaiting = false;
|
let importingChaptersWaiting = false;
|
||||||
let triedImportingChapters = false;
|
|
||||||
// List of open skip notices
|
// List of open skip notices
|
||||||
const skipNotices: SkipNotice[] = [];
|
const skipNotices: SkipNotice[] = [];
|
||||||
let upcomingNotice: UpcomingNotice | null = null;
|
let upcomingNotice: UpcomingNotice | null = null;
|
||||||
@@ -142,6 +142,9 @@ let switchingVideos = null;
|
|||||||
let lastCheckTime = 0;
|
let lastCheckTime = 0;
|
||||||
let lastCheckVideoTime = -1;
|
let lastCheckVideoTime = -1;
|
||||||
|
|
||||||
|
// To determine if a video resolution change is happening
|
||||||
|
let firstPlay = true;
|
||||||
|
|
||||||
//is this channel whitelised from getting sponsors skipped
|
//is this channel whitelised from getting sponsors skipped
|
||||||
let channelWhitelisted = false;
|
let channelWhitelisted = false;
|
||||||
|
|
||||||
@@ -267,7 +270,7 @@ function messageListener(request: Message, sender: unknown, sendResponse: (respo
|
|||||||
sendResponse({ hasVideo: getVideoID() != null });
|
sendResponse({ hasVideo: getVideoID() != null });
|
||||||
// fetch segments
|
// fetch segments
|
||||||
if (getVideoID()) {
|
if (getVideoID()) {
|
||||||
sponsorsLookup(false);
|
sponsorsLookup(false, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@@ -345,6 +348,12 @@ function messageListener(request: Message, sender: unknown, sendResponse: (respo
|
|||||||
metaKey: request.metaKey
|
metaKey: request.metaKey
|
||||||
}));
|
}));
|
||||||
break;
|
break;
|
||||||
|
case "getLogs":
|
||||||
|
sendResponse({
|
||||||
|
debug: window["SBLogs"].debug,
|
||||||
|
warn: window["SBLogs"].warn
|
||||||
|
});
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
sendResponse({});
|
sendResponse({});
|
||||||
@@ -362,7 +371,7 @@ function contentConfigUpdateListener(changes: StorageChangesObject) {
|
|||||||
updateVisibilityOfPlayerControlsButton()
|
updateVisibilityOfPlayerControlsButton()
|
||||||
break;
|
break;
|
||||||
case "categorySelections":
|
case "categorySelections":
|
||||||
sponsorsLookup();
|
sponsorsLookup(true, true);
|
||||||
break;
|
break;
|
||||||
case "barTypes":
|
case "barTypes":
|
||||||
setCategoryColorCSSVariables();
|
setCategoryColorCSSVariables();
|
||||||
@@ -384,10 +393,10 @@ function resetValues() {
|
|||||||
lastCheckVideoTime = -1;
|
lastCheckVideoTime = -1;
|
||||||
retryCount = 0;
|
retryCount = 0;
|
||||||
previewedSegment = false;
|
previewedSegment = false;
|
||||||
|
firstPlay = true;
|
||||||
|
|
||||||
sponsorTimes = [];
|
sponsorTimes = [];
|
||||||
existingChaptersImported = false;
|
existingChaptersImported = false;
|
||||||
triedImportingChapters = false;
|
|
||||||
sponsorSkipped = [];
|
sponsorSkipped = [];
|
||||||
lastResponseStatus = 0;
|
lastResponseStatus = 0;
|
||||||
shownSegmentFailedToFetchWarning = false;
|
shownSegmentFailedToFetchWarning = false;
|
||||||
@@ -509,12 +518,8 @@ function handleMobileControlsMutations(): void {
|
|||||||
|
|
||||||
function getPreviewBarAttachElement(): HTMLElement | null {
|
function getPreviewBarAttachElement(): HTMLElement | null {
|
||||||
const progressElementOptions = [{
|
const progressElementOptions = [{
|
||||||
// For new mobile YouTube (#1287)
|
// For newer mobile YouTube (Sept 2024)
|
||||||
selector: ".progress-bar-line",
|
selector: ".YtProgressBarLineHost, .YtChapteredProgressBarHost",
|
||||||
isVisibleCheck: true
|
|
||||||
}, {
|
|
||||||
// For newer mobile YouTube (Jan 2024)
|
|
||||||
selector: ".YtProgressBarProgressBarLine",
|
|
||||||
isVisibleCheck: true
|
isVisibleCheck: true
|
||||||
}, {
|
}, {
|
||||||
// For newer mobile YouTube (May 2024)
|
// For newer mobile YouTube (May 2024)
|
||||||
@@ -646,7 +651,7 @@ async function startSponsorSchedule(includeIntersectingSegments = false, current
|
|||||||
|
|
||||||
updateActiveSegment(currentTime);
|
updateActiveSegment(currentTime);
|
||||||
|
|
||||||
if (getVideo().paused
|
if ((getVideo().paused && getCurrentTime() !== 0) // Allow autoplay disabled videos to skip before playing
|
||||||
|| (getCurrentTime() >= getVideoDuration() - 0.01 && getVideoDuration() > 1)) return;
|
|| (getCurrentTime() >= getVideoDuration() - 0.01 && getVideoDuration() > 1)) return;
|
||||||
const skipInfo = getNextSkipIndex(currentTime, includeIntersectingSegments, includeNonIntersectingSegments);
|
const skipInfo = getNextSkipIndex(currentTime, includeIntersectingSegments, includeNonIntersectingSegments);
|
||||||
|
|
||||||
@@ -874,6 +879,7 @@ let lastPlaybackSpeed = 1;
|
|||||||
let setupVideoListenersFirstTime = true;
|
let setupVideoListenersFirstTime = true;
|
||||||
function setupVideoListeners() {
|
function setupVideoListeners() {
|
||||||
const video = getVideo();
|
const video = getVideo();
|
||||||
|
if (!video) return; // Maybe video became invisible
|
||||||
|
|
||||||
//wait until it is loaded
|
//wait until it is loaded
|
||||||
video.addEventListener('loadstart', videoOnReadyListener)
|
video.addEventListener('loadstart', videoOnReadyListener)
|
||||||
@@ -891,6 +897,7 @@ function setupVideoListeners() {
|
|||||||
|
|
||||||
let startedWaiting = false;
|
let startedWaiting = false;
|
||||||
let lastPausedAtZero = true;
|
let lastPausedAtZero = true;
|
||||||
|
let lastVideoDataChange = 0;
|
||||||
|
|
||||||
const rateChangeListener = () => {
|
const rateChangeListener = () => {
|
||||||
updateVirtualTime();
|
updateVirtualTime();
|
||||||
@@ -903,13 +910,10 @@ function setupVideoListeners() {
|
|||||||
video.addEventListener('videoSpeed_ratechange', rateChangeListener);
|
video.addEventListener('videoSpeed_ratechange', rateChangeListener);
|
||||||
|
|
||||||
const playListener = () => {
|
const playListener = () => {
|
||||||
// If it is not the first event, then the only way to get to 0 is if there is a seek event
|
// Prevent video resolution changes from causing skips
|
||||||
// This check makes sure that changing the video resolution doesn't cause the extension to think it
|
if (!firstPlay && Date.now() - lastVideoDataChange < 200 && video.currentTime === 0) return;
|
||||||
// gone back to the begining
|
|
||||||
if (video.readyState <= HTMLMediaElement.HAVE_CURRENT_DATA
|
|
||||||
&& video.currentTime === 0) return;
|
|
||||||
|
|
||||||
|
|
||||||
|
firstPlay = false;
|
||||||
updateVirtualTime();
|
updateVirtualTime();
|
||||||
checkForMiniplayerPlaying();
|
checkForMiniplayerPlaying();
|
||||||
|
|
||||||
@@ -1041,6 +1045,24 @@ function setupVideoListeners() {
|
|||||||
};
|
};
|
||||||
video.addEventListener('waiting', waitingListener);
|
video.addEventListener('waiting', waitingListener);
|
||||||
|
|
||||||
|
// When video data is changed
|
||||||
|
const emptyListener = () => {
|
||||||
|
lastVideoDataChange = Date.now();
|
||||||
|
|
||||||
|
if (firstPlay && video.currentTime === 0) {
|
||||||
|
playListener();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
video.addEventListener('emptied', emptyListener);
|
||||||
|
|
||||||
|
// For when autoplay is off to skip before starting playback
|
||||||
|
const metadataLoadedListener = () => {
|
||||||
|
if (firstPlay && getCurrentTime() === 0) {
|
||||||
|
playListener();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
video.addEventListener('loadedmetadata', metadataLoadedListener)
|
||||||
|
|
||||||
startSponsorSchedule();
|
startSponsorSchedule();
|
||||||
|
|
||||||
if (setupVideoListenersFirstTime) {
|
if (setupVideoListenersFirstTime) {
|
||||||
@@ -1052,6 +1074,8 @@ function setupVideoListeners() {
|
|||||||
video.removeEventListener('videoSpeed_ratechange', rateChangeListener);
|
video.removeEventListener('videoSpeed_ratechange', rateChangeListener);
|
||||||
video.removeEventListener('pause', pauseListener);
|
video.removeEventListener('pause', pauseListener);
|
||||||
video.removeEventListener('waiting', waitingListener);
|
video.removeEventListener('waiting', waitingListener);
|
||||||
|
video.removeEventListener('empty', emptyListener);
|
||||||
|
video.removeEventListener('loadedmetadata', metadataLoadedListener);
|
||||||
|
|
||||||
if (playbackRateCheckInterval) clearInterval(playbackRateCheckInterval);
|
if (playbackRateCheckInterval) clearInterval(playbackRateCheckInterval);
|
||||||
});
|
});
|
||||||
@@ -1136,38 +1160,23 @@ function setupCategoryPill() {
|
|||||||
categoryPill.attachToPage(isOnMobileYouTube(), isOnInvidious(), voteAsync);
|
categoryPill.attachToPage(isOnMobileYouTube(), isOnInvidious(), voteAsync);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function sponsorsLookup(keepOldSubmissions = true) {
|
async function sponsorsLookup(keepOldSubmissions = true, ignoreCache = false) {
|
||||||
const categories: string[] = Config.config.categorySelections.map((category) => category.name);
|
const videoID = getVideoID();
|
||||||
|
|
||||||
const extraRequestData: Record<string, unknown> = {};
|
|
||||||
const hashParams = getHashParams();
|
|
||||||
if (hashParams.requiredSegment) extraRequestData.requiredSegment = hashParams.requiredSegment;
|
|
||||||
|
|
||||||
const videoID = getVideoID()
|
|
||||||
if (!videoID) {
|
if (!videoID) {
|
||||||
console.error("[SponsorBlock] Attempted to fetch segments with a null/undefined videoID.");
|
console.error("[SponsorBlock] Attempted to fetch segments with a null/undefined videoID.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const hashPrefix = (await getHash(videoID, 1)).slice(0, 4) as VideoID & HashedValue;
|
|
||||||
const response = await asyncRequestToServer('GET', "/api/skipSegments/" + hashPrefix, {
|
const segmentData = await getSegmentsForVideo(videoID, ignoreCache);
|
||||||
categories,
|
|
||||||
actionTypes: getEnabledActionTypes(),
|
// Make sure an old pending request doesn't get used.
|
||||||
userAgent: `${chrome.runtime.id}`,
|
if (videoID !== getVideoID()) return;
|
||||||
...extraRequestData
|
|
||||||
});
|
|
||||||
|
|
||||||
// store last response status
|
// store last response status
|
||||||
lastResponseStatus = response?.status;
|
lastResponseStatus = segmentData.status;
|
||||||
|
if (segmentData.status === 200) {
|
||||||
|
const receivedSegments = segmentData.segments;
|
||||||
|
|
||||||
if (response?.ok) {
|
|
||||||
const receivedSegments: SponsorTime[] = JSON.parse(response.responseText)
|
|
||||||
?.filter((video) => video.videoID === getVideoID())
|
|
||||||
?.map((video) => video.segments)?.[0]
|
|
||||||
?.map((segment) => ({
|
|
||||||
...segment,
|
|
||||||
source: SponsorSourceType.Server
|
|
||||||
}))
|
|
||||||
?.sort((a, b) => a.segment[0] - b.segment[0]);
|
|
||||||
if (receivedSegments && receivedSegments.length) {
|
if (receivedSegments && receivedSegments.length) {
|
||||||
sponsorDataFound = true;
|
sponsorDataFound = true;
|
||||||
|
|
||||||
@@ -1207,6 +1216,7 @@ async function sponsorsLookup(keepOldSubmissions = true) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// See if some segments should be hidden
|
// See if some segments should be hidden
|
||||||
|
const hashPrefix = (await getHash(videoID, 1)).slice(0, 4) as VideoID & HashedValue;
|
||||||
const downvotedData = Config.local.downvotedSegments[hashPrefix];
|
const downvotedData = Config.local.downvotedSegments[hashPrefix];
|
||||||
if (downvotedData) {
|
if (downvotedData) {
|
||||||
for (const segment of sponsorTimes) {
|
for (const segment of sponsorTimes) {
|
||||||
@@ -1253,7 +1263,7 @@ async function sponsorsLookup(keepOldSubmissions = true) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function importExistingChapters(wait: boolean) {
|
function importExistingChapters(wait: boolean) {
|
||||||
if (!existingChaptersImported && !importingChaptersWaiting && !triedImportingChapters && onVideoPage() && !isOnMobileYouTube()) {
|
if (!existingChaptersImported && !importingChaptersWaiting && onVideoPage() && !isOnMobileYouTube()) {
|
||||||
const waitCondition = () => getVideoDuration() && getExistingChapters(getVideoID(), getVideoDuration());
|
const waitCondition = () => getVideoDuration() && getExistingChapters(getVideoID(), getVideoDuration());
|
||||||
|
|
||||||
if (wait && !document.hasFocus() && !importingChaptersWaitingForFocus && !waitCondition()) {
|
if (wait && !document.hasFocus() && !importingChaptersWaitingForFocus && !waitCondition()) {
|
||||||
@@ -1274,23 +1284,11 @@ function importExistingChapters(wait: boolean) {
|
|||||||
existingChaptersImported = true;
|
existingChaptersImported = true;
|
||||||
updatePreviewBar();
|
updatePreviewBar();
|
||||||
}
|
}
|
||||||
}).catch(() => { importingChaptersWaiting = false; triedImportingChapters = true; }); // eslint-disable-line @typescript-eslint/no-empty-function
|
}).catch(() => { importingChaptersWaiting = false; }); // eslint-disable-line @typescript-eslint/no-empty-function
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getEnabledActionTypes(forceFullVideo = false): ActionType[] {
|
|
||||||
const actionTypes = [ActionType.Skip, ActionType.Poi, ActionType.Chapter];
|
|
||||||
if (Config.config.muteSegments) {
|
|
||||||
actionTypes.push(ActionType.Mute);
|
|
||||||
}
|
|
||||||
if (Config.config.fullVideoSegments || forceFullVideo) {
|
|
||||||
actionTypes.push(ActionType.Full);
|
|
||||||
}
|
|
||||||
|
|
||||||
return actionTypes;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function lockedCategoriesLookup(): Promise<void> {
|
async function lockedCategoriesLookup(): Promise<void> {
|
||||||
const hashPrefix = (await getHash(getVideoID(), 1)).slice(0, 4);
|
const hashPrefix = (await getHash(getVideoID(), 1)).slice(0, 4);
|
||||||
const response = await asyncRequestToServer("GET", "/api/lockCategories/" + hashPrefix);
|
const response = await asyncRequestToServer("GET", "/api/lockCategories/" + hashPrefix);
|
||||||
@@ -1750,7 +1748,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();
|
||||||
@@ -2031,7 +2029,7 @@ function startOrEndTimingNewSegment() {
|
|||||||
Config.forceLocalUpdate("unsubmittedSegments");
|
Config.forceLocalUpdate("unsubmittedSegments");
|
||||||
|
|
||||||
// Make sure they know if someone has already submitted something it while they were watching
|
// Make sure they know if someone has already submitted something it while they were watching
|
||||||
sponsorsLookup();
|
sponsorsLookup(true, true);
|
||||||
|
|
||||||
updateEditButtonsOnPlayer();
|
updateEditButtonsOnPlayer();
|
||||||
updateSponsorTimesSubmitting(false);
|
updateSponsorTimesSubmitting(false);
|
||||||
@@ -2568,8 +2566,10 @@ 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?.id?.toLowerCase()?.includes("editable")) return;
|
|| (document.activeElement as HTMLElement)?.isContentEditable
|
||||||
|
|| document.activeElement?.id?.toLowerCase()?.match(/editable|input/))
|
||||||
|
&& document.hasFocus()) return;
|
||||||
|
|
||||||
const key: Keybind = {
|
const key: Keybind = {
|
||||||
key: e.key,
|
key: e.key,
|
||||||
@@ -2616,6 +2616,8 @@ function hotkeyListener(e: KeyboardEvent): void {
|
|||||||
submitSegments();
|
submitSegments();
|
||||||
return;
|
return;
|
||||||
} else if (keybindEquals(key, openSubmissionMenuKey)) {
|
} else if (keybindEquals(key, openSubmissionMenuKey)) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
openSubmissionMenu();
|
openSubmissionMenu();
|
||||||
return;
|
return;
|
||||||
} else if (keybindEquals(key, previewKey)) {
|
} else if (keybindEquals(key, previewKey)) {
|
||||||
@@ -2630,16 +2632,6 @@ function hotkeyListener(e: KeyboardEvent): void {
|
|||||||
previousChapter();
|
previousChapter();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
//legacy - to preserve keybinds for skipKey, startSponsorKey and submitKey for people who set it before the update. (shouldn't be changed for future keybind options)
|
|
||||||
if (key.key == skipKey?.key && skipKey.code == null && !keybindEquals(Config.syncDefaults.skipKeybind, skipKey)) {
|
|
||||||
if (activeSkipKeybindElement)
|
|
||||||
activeSkipKeybindElement.toggleSkip.call(activeSkipKeybindElement);
|
|
||||||
} else if (key.key == startSponsorKey?.key && startSponsorKey.code == null && !keybindEquals(Config.syncDefaults.startSponsorKeybind, startSponsorKey)) {
|
|
||||||
startOrEndTimingNewSegment();
|
|
||||||
} else if (key.key == submitKey?.key && submitKey.code == null && !keybindEquals(Config.syncDefaults.submitKeybind, submitKey)) {
|
|
||||||
openSubmissionMenu();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -2687,11 +2679,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";
|
||||||
@@ -2701,10 +2693,14 @@ 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);
|
|
||||||
|
|
||||||
|
if (isOnMobileYouTube()) {
|
||||||
|
duration.style.paddingLeft = "4px";
|
||||||
|
display.insertBefore(duration, display.lastChild);
|
||||||
|
} else {
|
||||||
display.appendChild(duration);
|
display.appendChild(duration);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const durationAfterSkips = getFormattedTime(getVideoDuration() - skippedDuration);
|
const durationAfterSkips = getFormattedTime(getVideoDuration() - skippedDuration);
|
||||||
|
|
||||||
|
|||||||
@@ -197,7 +197,6 @@ class PreviewBar {
|
|||||||
|
|
||||||
if (this.onMobileYouTube) {
|
if (this.onMobileYouTube) {
|
||||||
this.container.style.transform = "none";
|
this.container.style.transform = "none";
|
||||||
this.container.style.height = "var(--yt-progress-bar-height)";
|
|
||||||
} else if (!this.onInvidious) {
|
} else if (!this.onInvidious) {
|
||||||
this.container.classList.add("sbNotInvidious");
|
this.container.classList.add("sbNotInvidious");
|
||||||
}
|
}
|
||||||
@@ -648,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);
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ interface DefaultMessage {
|
|||||||
| "isChannelWhitelisted"
|
| "isChannelWhitelisted"
|
||||||
| "submitTimes"
|
| "submitTimes"
|
||||||
| "refreshSegments"
|
| "refreshSegments"
|
||||||
| "closePopup";
|
| "closePopup"
|
||||||
|
| "getLogs";
|
||||||
}
|
}
|
||||||
|
|
||||||
interface BoolValueMessage {
|
interface BoolValueMessage {
|
||||||
@@ -104,7 +105,8 @@ export type MessageResponse =
|
|||||||
| Record<string, never> // empty object response {}
|
| Record<string, never> // empty object response {}
|
||||||
| VoteResponse
|
| VoteResponse
|
||||||
| ImportSegmentsResponse
|
| ImportSegmentsResponse
|
||||||
| RefreshSegmentsResponse;
|
| RefreshSegmentsResponse
|
||||||
|
| LogResponse;
|
||||||
|
|
||||||
export interface VoteResponse {
|
export interface VoteResponse {
|
||||||
successType: number;
|
successType: number;
|
||||||
@@ -120,6 +122,11 @@ export interface RefreshSegmentsResponse {
|
|||||||
hasVideo: boolean;
|
hasVideo: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface LogResponse {
|
||||||
|
debug: string[];
|
||||||
|
warn: string[];
|
||||||
|
}
|
||||||
|
|
||||||
export interface TimeUpdateMessage {
|
export interface TimeUpdateMessage {
|
||||||
message: "time";
|
message: "time";
|
||||||
time: number;
|
time: number;
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { createRoot } from 'react-dom/client';
|
import { createRoot } from 'react-dom/client';
|
||||||
|
|
||||||
import Config from "./config";
|
import Config, { generateDebugDetails } from "./config";
|
||||||
import * as CompileConfig from "../config.json";
|
|
||||||
import * as invidiousList from "../ci/invidiouslist.json";
|
import * as invidiousList from "../ci/invidiouslist.json";
|
||||||
|
|
||||||
// Make the config public for debugging purposes
|
// Make the config public for debugging purposes
|
||||||
@@ -698,26 +697,8 @@ function validateServerAddress(input: string): string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function copyDebugOutputToClipboard() {
|
function copyDebugOutputToClipboard() {
|
||||||
// Build output debug information object
|
|
||||||
const output = {
|
|
||||||
debug: {
|
|
||||||
userAgent: navigator.userAgent,
|
|
||||||
platform: navigator.platform,
|
|
||||||
language: navigator.language,
|
|
||||||
extensionVersion: chrome.runtime.getManifest().version
|
|
||||||
},
|
|
||||||
config: JSON.parse(JSON.stringify(Config.cachedSyncConfig)) // Deep clone config object
|
|
||||||
};
|
|
||||||
|
|
||||||
// Sanitise sensitive user config values
|
|
||||||
delete output.config.userID;
|
|
||||||
output.config.serverAddress = (output.config.serverAddress === CompileConfig.serverAddress)
|
|
||||||
? "Default server address" : "Custom server address";
|
|
||||||
output.config.invidiousInstances = output.config.invidiousInstances.length;
|
|
||||||
output.config.whitelistedChannels = output.config.whitelistedChannels.length;
|
|
||||||
|
|
||||||
// Copy object to clipboard
|
// Copy object to clipboard
|
||||||
navigator.clipboard.writeText(JSON.stringify(output, null, 4))
|
navigator.clipboard.writeText(generateDebugDetails())
|
||||||
.then(() => {
|
.then(() => {
|
||||||
alert(chrome.i18n.getMessage("copyDebugInformationComplete"));
|
alert(chrome.i18n.getMessage("copyDebugInformationComplete"));
|
||||||
})
|
})
|
||||||
|
|||||||
13
src/popup.ts
13
src/popup.ts
@@ -1,4 +1,4 @@
|
|||||||
import Config from "./config";
|
import Config, { generateDebugDetails } from "./config";
|
||||||
|
|
||||||
import Utils from "./utils";
|
import Utils from "./utils";
|
||||||
import {
|
import {
|
||||||
@@ -12,6 +12,7 @@ import {
|
|||||||
GetChannelIDResponse,
|
GetChannelIDResponse,
|
||||||
IsChannelWhitelistedResponse,
|
IsChannelWhitelistedResponse,
|
||||||
IsInfoFoundMessageResponse,
|
IsInfoFoundMessageResponse,
|
||||||
|
LogResponse,
|
||||||
Message,
|
Message,
|
||||||
MessageResponse,
|
MessageResponse,
|
||||||
PopupMessage,
|
PopupMessage,
|
||||||
@@ -184,7 +185,8 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
|
|||||||
"exportSegmentsButton",
|
"exportSegmentsButton",
|
||||||
"importSegmentsMenu",
|
"importSegmentsMenu",
|
||||||
"importSegmentsText",
|
"importSegmentsText",
|
||||||
"importSegmentsSubmit"
|
"importSegmentsSubmit",
|
||||||
|
"debugLogs"
|
||||||
|
|
||||||
].forEach(id => PageElements[id] = document.getElementById(id));
|
].forEach(id => PageElements[id] = document.getElementById(id));
|
||||||
|
|
||||||
@@ -255,6 +257,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
|
|||||||
PageElements.helpButton.addEventListener("click", openHelp);
|
PageElements.helpButton.addEventListener("click", openHelp);
|
||||||
PageElements.refreshSegmentsButton.addEventListener("click", refreshSegments);
|
PageElements.refreshSegmentsButton.addEventListener("click", refreshSegments);
|
||||||
PageElements.sbPopupIconCopyUserID.addEventListener("click", async () => copyToClipboard(await getHash(Config.config.userID)));
|
PageElements.sbPopupIconCopyUserID.addEventListener("click", async () => copyToClipboard(await getHash(Config.config.userID)));
|
||||||
|
PageElements.debugLogs.addEventListener("click", copyDebgLogs);
|
||||||
|
|
||||||
// Forward click events
|
// Forward click events
|
||||||
if (window !== window.top) {
|
if (window !== window.top) {
|
||||||
@@ -1143,6 +1146,12 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function copyDebgLogs() {
|
||||||
|
sendTabMessage({ message: "getLogs" }, (logs: LogResponse) => {
|
||||||
|
copyToClipboard(`${generateDebugDetails()}\n\nWarn:\n${logs.warn.join("\n")}\n\nDebug:\n${logs.debug.join("\n")}`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function onMessage(msg: PopupMessage) {
|
function onMessage(msg: PopupMessage) {
|
||||||
switch (msg.message) {
|
switch (msg.message) {
|
||||||
case "time":
|
case "time":
|
||||||
|
|||||||
@@ -56,7 +56,13 @@ export enum ActionType {
|
|||||||
Poi = "poi"
|
Poi = "poi"
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ActionTypes = [ActionType.Skip, ActionType.Mute];
|
export const ActionTypes = [
|
||||||
|
ActionType.Skip,
|
||||||
|
ActionType.Mute,
|
||||||
|
ActionType.Chapter,
|
||||||
|
ActionType.Full,
|
||||||
|
ActionType.Poi
|
||||||
|
];
|
||||||
|
|
||||||
export type SegmentUUID = string & { __segmentUUIDBrand: unknown };
|
export type SegmentUUID = string & { __segmentUUIDBrand: unknown };
|
||||||
export type Category = string & { __categoryBrand: unknown };
|
export type Category = string & { __categoryBrand: unknown };
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ export function getHashParams(): Record<string, unknown> {
|
|||||||
|
|
||||||
export function getExistingChapters(currentVideoID: VideoID, duration: number): SponsorTime[] {
|
export function getExistingChapters(currentVideoID: VideoID, duration: number): SponsorTime[] {
|
||||||
const chaptersBox = document.querySelector("ytd-macro-markers-list-renderer");
|
const chaptersBox = document.querySelector("ytd-macro-markers-list-renderer");
|
||||||
const title = document.querySelector("[target-id=engagement-panel-macro-markers-auto-chapters] #title-text");
|
const title = chaptersBox?.closest("ytd-engagement-panel-section-list-renderer")?.querySelector("#title-text.ytd-engagement-panel-title-header-renderer");
|
||||||
if (title?.textContent?.includes("Key moment")) return [];
|
if (title?.textContent?.includes("Key moment")) return [];
|
||||||
|
|
||||||
const chapters: SponsorTime[] = [];
|
const chapters: SponsorTime[] = [];
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ import { FetchResponse, sendRequestToCustomServer } from "../../maze-utils/src/b
|
|||||||
* @param address The address to add to the SponsorBlock server address
|
* @param address The address to add to the SponsorBlock server address
|
||||||
* @param callback
|
* @param callback
|
||||||
*/
|
*/
|
||||||
export function asyncRequestToCustomServer(type: string, url: string, data = {}): Promise<FetchResponse> {
|
export function asyncRequestToCustomServer(type: string, url: string, data = {}, headers = {}): Promise<FetchResponse> {
|
||||||
return sendRequestToCustomServer(type, url, data);
|
return sendRequestToCustomServer(type, url, data, headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -20,10 +20,10 @@ export function asyncRequestToCustomServer(type: string, url: string, data = {})
|
|||||||
* @param address The address to add to the SponsorBlock server address
|
* @param address The address to add to the SponsorBlock server address
|
||||||
* @param callback
|
* @param callback
|
||||||
*/
|
*/
|
||||||
export async function asyncRequestToServer(type: string, address: string, data = {}): Promise<FetchResponse> {
|
export async function asyncRequestToServer(type: string, address: string, data = {}, headers = {}): Promise<FetchResponse> {
|
||||||
const serverAddress = Config.config.testingServer ? CompileConfig.testingServerAddress : Config.config.serverAddress;
|
const serverAddress = Config.config.testingServer ? CompileConfig.testingServerAddress : Config.config.serverAddress;
|
||||||
|
|
||||||
return await (asyncRequestToCustomServer(type, serverAddress + address, data));
|
return await (asyncRequestToCustomServer(type, serverAddress + address, data, headers));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
104
src/utils/segmentData.ts
Normal file
104
src/utils/segmentData.ts
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
import { DataCache } from "../../maze-utils/src/cache";
|
||||||
|
import { getHash, HashedValue } from "../../maze-utils/src/hash";
|
||||||
|
import Config from "../config";
|
||||||
|
import * as CompileConfig from "../../config.json";
|
||||||
|
import { ActionType, ActionTypes, SponsorSourceType, SponsorTime, VideoID } from "../types";
|
||||||
|
import { getHashParams } from "./pageUtils";
|
||||||
|
import { asyncRequestToServer } from "./requests";
|
||||||
|
|
||||||
|
const segmentDataCache = new DataCache<VideoID, SegmentResponse>(() => {
|
||||||
|
return {
|
||||||
|
segments: null,
|
||||||
|
status: 200
|
||||||
|
};
|
||||||
|
}, 5);
|
||||||
|
|
||||||
|
const pendingList: Record<VideoID, Promise<SegmentResponse>> = {};
|
||||||
|
|
||||||
|
export interface SegmentResponse {
|
||||||
|
segments: SponsorTime[] | null;
|
||||||
|
status: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getSegmentsForVideo(videoID: VideoID, ignoreCache: boolean): Promise<SegmentResponse> {
|
||||||
|
if (!ignoreCache) {
|
||||||
|
const cachedData = segmentDataCache.getFromCache(videoID);
|
||||||
|
if (cachedData) {
|
||||||
|
segmentDataCache.cacheUsed(videoID);
|
||||||
|
return cachedData;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pendingList[videoID]) {
|
||||||
|
return await pendingList[videoID];
|
||||||
|
}
|
||||||
|
|
||||||
|
const pendingData = fetchSegmentsForVideo(videoID);
|
||||||
|
pendingList[videoID] = pendingData;
|
||||||
|
|
||||||
|
const result = await pendingData;
|
||||||
|
delete pendingList[videoID];
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function fetchSegmentsForVideo(videoID: VideoID): Promise<SegmentResponse> {
|
||||||
|
const categories: string[] = Config.config.categorySelections.map((category) => category.name);
|
||||||
|
|
||||||
|
const extraRequestData: Record<string, unknown> = {};
|
||||||
|
const hashParams = getHashParams();
|
||||||
|
if (hashParams.requiredSegment) extraRequestData.requiredSegment = hashParams.requiredSegment;
|
||||||
|
|
||||||
|
const hashPrefix = (await getHash(videoID, 1)).slice(0, 4) as VideoID & HashedValue;
|
||||||
|
const response = await asyncRequestToServer('GET', "/api/skipSegments/" + hashPrefix, {
|
||||||
|
categories: CompileConfig.categoryList,
|
||||||
|
actionTypes: ActionTypes,
|
||||||
|
...extraRequestData
|
||||||
|
}, {
|
||||||
|
"X-CLIENT-NAME": `${chrome.runtime.id}/v${chrome.runtime.getManifest().version}`
|
||||||
|
});
|
||||||
|
|
||||||
|
if (response.ok) {
|
||||||
|
const enabledActionTypes = getEnabledActionTypes();
|
||||||
|
|
||||||
|
const receivedSegments: SponsorTime[] = JSON.parse(response.responseText)
|
||||||
|
?.filter((video) => video.videoID === videoID)
|
||||||
|
?.map((video) => video.segments)?.[0]
|
||||||
|
?.filter((segment) => enabledActionTypes.includes(segment.actionType) && categories.includes(segment.category))
|
||||||
|
?.map((segment) => ({
|
||||||
|
...segment,
|
||||||
|
source: SponsorSourceType.Server
|
||||||
|
}))
|
||||||
|
?.sort((a, b) => a.segment[0] - b.segment[0]);
|
||||||
|
|
||||||
|
if (receivedSegments && receivedSegments.length) {
|
||||||
|
const result = {
|
||||||
|
segments: receivedSegments,
|
||||||
|
status: response.status
|
||||||
|
};
|
||||||
|
|
||||||
|
segmentDataCache.setupCache(videoID).segments = result.segments;
|
||||||
|
return result;
|
||||||
|
} else {
|
||||||
|
// Setup with null data
|
||||||
|
segmentDataCache.setupCache(videoID);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
segments: null,
|
||||||
|
status: response.status
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function getEnabledActionTypes(forceFullVideo = false): ActionType[] {
|
||||||
|
const actionTypes = [ActionType.Skip, ActionType.Poi, ActionType.Chapter];
|
||||||
|
if (Config.config.muteSegments) {
|
||||||
|
actionTypes.push(ActionType.Mute);
|
||||||
|
}
|
||||||
|
if (Config.config.fullVideoSegments || forceFullVideo) {
|
||||||
|
actionTypes.push(ActionType.Full);
|
||||||
|
}
|
||||||
|
|
||||||
|
return actionTypes;
|
||||||
|
}
|
||||||
@@ -1,10 +1,15 @@
|
|||||||
import { isOnInvidious, parseYouTubeVideoIDFromURL } from "../../maze-utils/src/video";
|
import { isOnInvidious, parseYouTubeVideoIDFromURL } from "../../maze-utils/src/video";
|
||||||
import Config from "../config";
|
import Config from "../config";
|
||||||
import { getVideoLabel } from "./videoLabels";
|
import { getVideoLabel } from "./videoLabels";
|
||||||
import { setThumbnailListener } from "../../maze-utils/src/thumbnailManagement";
|
import { getThumbnailSelector, setThumbnailListener } from "../../maze-utils/src/thumbnailManagement";
|
||||||
|
import { VideoID } from "../types";
|
||||||
|
import { getSegmentsForVideo } from "./segmentData";
|
||||||
|
|
||||||
export async function labelThumbnails(thumbnails: HTMLImageElement[]): Promise<void> {
|
export async function handleThumbnails(thumbnails: HTMLImageElement[]): Promise<void> {
|
||||||
await Promise.all(thumbnails.map((t) => labelThumbnail(t)));
|
await Promise.all(thumbnails.map((t) => {
|
||||||
|
labelThumbnail(t);
|
||||||
|
setupThumbnailHover(t);
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function labelThumbnail(thumbnail: HTMLImageElement): Promise<HTMLElement | null> {
|
export async function labelThumbnail(thumbnail: HTMLImageElement): Promise<HTMLElement | null> {
|
||||||
@@ -13,9 +18,7 @@ export async function labelThumbnail(thumbnail: HTMLImageElement): Promise<HTMLE
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const link = (isOnInvidious() ? thumbnail.parentElement : thumbnail.querySelector("#thumbnail")) as HTMLAnchorElement
|
const videoID = extractVideoID(thumbnail);
|
||||||
if (!link || link.nodeName !== "A" || !link.href) return null; // no link found
|
|
||||||
const videoID = parseYouTubeVideoIDFromURL(link.href)?.videoID;
|
|
||||||
if (!videoID) {
|
if (!videoID) {
|
||||||
hideThumbnailLabel(thumbnail);
|
hideThumbnailLabel(thumbnail);
|
||||||
return null;
|
return null;
|
||||||
@@ -37,6 +40,47 @@ export async function labelThumbnail(thumbnail: HTMLImageElement): Promise<HTMLE
|
|||||||
return overlay;
|
return overlay;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function setupThumbnailHover(thumbnail: HTMLImageElement): Promise<void> {
|
||||||
|
// Cache would be reset every load due to no SPA
|
||||||
|
if (isOnInvidious()) return;
|
||||||
|
|
||||||
|
const mainElement = thumbnail.closest("#dismissible") as HTMLElement;
|
||||||
|
if (mainElement) {
|
||||||
|
mainElement.removeEventListener("mouseenter", thumbnailHoverListener);
|
||||||
|
mainElement.addEventListener("mouseenter", thumbnailHoverListener);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function thumbnailHoverListener(e: MouseEvent) {
|
||||||
|
if (!chrome.runtime?.id) return;
|
||||||
|
|
||||||
|
const thumbnail = (e.target as HTMLElement).querySelector(getThumbnailSelector()) as HTMLImageElement;
|
||||||
|
if (!thumbnail) return;
|
||||||
|
|
||||||
|
// Pre-fetch data for this video
|
||||||
|
const videoID = extractVideoID(thumbnail);
|
||||||
|
if (videoID) {
|
||||||
|
void getSegmentsForVideo(videoID, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 {
|
||||||
|
const link = getLink(thumbnail);
|
||||||
|
if (!link || link.nodeName !== "A" || !link.href) return null; // no link found
|
||||||
|
|
||||||
|
return parseYouTubeVideoIDFromURL(link.href)?.videoID;
|
||||||
|
}
|
||||||
|
|
||||||
function getOldThumbnailLabel(thumbnail: HTMLImageElement): HTMLElement | null {
|
function getOldThumbnailLabel(thumbnail: HTMLImageElement): HTMLElement | null {
|
||||||
return thumbnail.querySelector(".sponsorThumbnailLabel") as HTMLElement | null;
|
return thumbnail.querySelector(".sponsorThumbnailLabel") as HTMLElement | null;
|
||||||
}
|
}
|
||||||
@@ -109,7 +153,7 @@ function insertSBIconDefinition() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function setupThumbnailListener(): void {
|
export function setupThumbnailListener(): void {
|
||||||
setThumbnailListener(labelThumbnails, () => {
|
setThumbnailListener(handleThumbnails, () => {
|
||||||
insertSBIconDefinition();
|
insertSBIconDefinition();
|
||||||
}, () => Config.isReady());
|
}, () => Config.isReady());
|
||||||
}
|
}
|
||||||
@@ -171,6 +171,13 @@ module.exports = env => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (env.browser.toLowerCase() === "edge") {
|
||||||
|
parsed.Description.message = parsed.Description.message.match(/^.+(?=\. )/)?.[0] || parsed.Description.message;
|
||||||
|
if (parsed.Description.message.length > 132) {
|
||||||
|
parsed.Description.message = parsed.Description.message.slice(0, 129) + "...";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return Buffer.from(JSON.stringify(parsed));
|
return Buffer.from(JSON.stringify(parsed));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -185,6 +192,12 @@ module.exports = env => {
|
|||||||
stream: env.stream
|
stream: env.stream
|
||||||
}),
|
}),
|
||||||
new configDiffPlugin()
|
new configDiffPlugin()
|
||||||
]
|
],
|
||||||
|
performance: {
|
||||||
|
hints: false,
|
||||||
|
maxEntrypointSize: 512000,
|
||||||
|
maxAssetSize: 512000
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
Reference in New Issue
Block a user