Skip to content

Commit cf9cf9f

Browse files
committed
chore: bump package version to 0.1.3 and remove hardcoded development URL
1 parent a8eca43 commit cf9cf9f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kunkun/kunkun-ext-youtube-downloader",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"license": "MIT",
55
"exports": "./mod.ts",
66
"imports": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.kunkun.sh",
33
"name": "kunkun-ext-youtube-dowloader",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"license": "MIT",
66
"type": "module",
77
"kunkun": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class DownloadYouTubeExtension extends WorkerExtension {
180180
}
181181

182182
let url = await clipboard.readText();
183-
url = "https://youtu.be/-b1FogYHTZc"; // for development only
183+
// url = "https://youtu.be/-b1FogYHTZc"; // for development only
184184
// check if url is a valid youtube url
185185
if (!url.includes("youtube.com") && !url.includes("youtu.be")) {
186186
toast.warning("Invalid YouTube URL from clipboard");

0 commit comments

Comments
 (0)