chore: bump package version to 0.1.3 and remove hardcoded development URL

This commit is contained in:
Huakun Shen 2025-01-28 11:41:34 -05:00
parent a8eca4392a
commit cf9cf9f9d0
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@kunkun/kunkun-ext-youtube-downloader",
"version": "0.1.2",
"version": "0.1.3",
"license": "MIT",
"exports": "./mod.ts",
"imports": {

View File

@ -1,7 +1,7 @@
{
"$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-youtube-dowloader",
"version": "0.1.2",
"version": "0.1.3",
"license": "MIT",
"type": "module",
"kunkun": {

View File

@ -180,7 +180,7 @@ class DownloadYouTubeExtension extends WorkerExtension {
}
let url = await clipboard.readText();
url = "https://youtu.be/-b1FogYHTZc"; // for development only
// url = "https://youtu.be/-b1FogYHTZc"; // for development only
// check if url is a valid youtube url
if (!url.includes("youtube.com") && !url.includes("youtu.be")) {
toast.warning("Invalid YouTube URL from clipboard");