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}`);