Compare commits

...

2 commits

Author SHA1 Message Date
710ce264f8 update again
All checks were successful
Build / build (push) Successful in 22s
2026-06-09 05:35:54 +09:00
ffd23120fa change some filename rule
All checks were successful
Build / build (push) Successful in 23s
2026-06-09 05:32:17 +09:00
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
// ==UserScript==
// @name M3U8 HLS Downloader
// @namespace http://tampermonkey.net/
// @version 1.0.5
// @version 1.0.8
// @description 자동 탐지 및 다운로드: HLS(m3u8) 스트림의 세그먼트를 병합하여 단일 파일로 저장. 활성화된 동안 모든 트래픽을 모니터링하고 접근하기 때문에, 사용하지 않을때는 비활성화 필요.
// @author kyush
// @match *://*/*

View file

@ -1,6 +1,6 @@
{
"name": "m3u8-monkey-script",
"version": "1.0.5",
"version": "1.0.8",
"description": "",
"main": "index.js",
"scripts": {

View file

@ -28,7 +28,7 @@ export function guessFilename(url: string, mime?: string): string {
function extractTitleParts(): { name: string; volume: string } | null {
try {
const title = document.title || '';
const match = title.match(/^(.+?)\s+😜\s+(\d+)\s+-\s+Anime\s+-\s+Linkkf/);
const match = title.match(/^(.+?)\s+😜\s+(\d+)\s+-\s+Ani\S+\s+-\s+Linkkf/);
if (match) {
return { name: match[1].trim(), volume: match[2].trim() };
}