From 6551996149eb01356e3e5cc224dfc98342d232ba Mon Sep 17 00:00:00 2001 From: TropiiDev Date: Wed, 5 Mar 2025 14:11:02 -0500 Subject: [PATCH] When will the bug fixes end --- CHANGELOG.md | 6 ++---- copyurl.js | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9623ca9..f9aaa86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,5 @@ ## Changelog -## 0.0.5 +## 0.0.6 # Alpha release -- Update the manifest.json file to include a shortcut keybind. -- Update the copyurl.js file to copy the url based on the shortcut -- Update the style.css file to add a larger width, and some color other than gray and black +- Final bug fix? (please) diff --git a/copyurl.js b/copyurl.js index 978acb4..4260200 100644 --- a/copyurl.js +++ b/copyurl.js @@ -1,6 +1,6 @@ +const url = window.location.href; chrome.commands.onCommand.addListener(function (command) { if (command === "Copy URL") { - const url = window.location.href; navigator.clipboard.writeText(url).then( function () { console.log(`Copied URL: ${url}`);