From 4061585701eebea1975469a79fd8a50cfb3de258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rard=20Kieffer?= <60404287+RetroYogi@users.noreply.github.com> Date: Tue, 9 Jul 2024 17:51:35 +0200 Subject: [PATCH] Add files via upload --- changelog.md | 9 ++++++--- manifest.json | 5 ++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/changelog.md b/changelog.md index 6b85ece..f7d4e05 100644 --- a/changelog.md +++ b/changelog.md @@ -1,9 +1,12 @@ -# 1.0.0 -Initial release +# 1.0.4 +Removed unused storage permission # 1.0.3 ## Bug fixes - Improvement: Added functionality to identify pinned tabs upon extension activation. This ensures the extension immediately recognizes which tabs are protected. (Implemented in background.js) - Fix: Resolved an issue where the extension blocked CMD-W (or Ctrl-W) for tabs that were previously pinned and then unpinned. Now, the extension only blocks the shortcut for currently pinned tabs. (Modified background.js) - Fix: Addressed a bug in content.js that caused a "TypeError: Cannot read properties of undefined (reading 'query')" error. The script now checks for extension availability before using the chrome.tabs API. (Modified content.js) -- Fixed an issue where clicking a link to a different domain inside a pinned tab sometimes opened two new tabs instead of one. \ No newline at end of file +- Fixed an issue where clicking a link to a different domain inside a pinned tab sometimes opened two new tabs instead of one. + +# 1.0.0 +Initial release \ No newline at end of file diff --git a/manifest.json b/manifest.json index 04247a7..ef51648 100644 --- a/manifest.json +++ b/manifest.json @@ -1,12 +1,11 @@ { "manifest_version": 3, "name": "Besser Pinned Tabs", - "version": "1.0.3", + "version": "1.0.4", "description": "Protects pinned tabs by quickly reopening them if closed", "permissions": [ "tabs", - "webNavigation", - "storage" + "webNavigation" ], "background": { "service_worker": "background.js"