When will the bug fixes end

This commit is contained in:
TropiiDev 2025-03-05 14:11:02 -05:00
parent 584aa370b1
commit 6551996149
2 changed files with 3 additions and 5 deletions

View File

@ -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)

View File

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