mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
14 lines
438 B
TypeScript
14 lines
438 B
TypeScript
import { inject } from 'simple-youtube-age-restriction-bypass';
|
|
|
|
import { createPlugin } from '@/utils';
|
|
import { t } from '@/i18n';
|
|
|
|
export default createPlugin({
|
|
name: () => t('plugins.bypass-age-restrictions.name'),
|
|
description: () => t('plugins.bypass-age-restrictions.description'),
|
|
restartNeeded: true,
|
|
|
|
// See https://github.com/organization/Simple-YouTube-Age-Restriction-Bypass#userscript
|
|
renderer: () => inject(),
|
|
});
|