Skip to content

Commit

Permalink
Merge pull request #2 from RetroYogi/1.0.4
Browse files Browse the repository at this point in the history
Removed unused storage permission
  • Loading branch information
RetroYogi authored Jul 9, 2024
2 parents 8898e60 + 4061585 commit 7c388b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 6 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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.
- 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
5 changes: 2 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 7c388b9

Please sign in to comment.