5 Commits

Author SHA1 Message Date
semantic-release-bot
576ab77fe6 chore(release): 1.12.1
## [1.12.1](https://github.com/obsqrbtz/goose-highlighter/compare/v1.12.0...v1.12.1) (2026-02-09)

### Bug Fixes

* permissions ([3e00090](3e00090ac9))
2026-02-09 16:51:01 +03:00
3e00090ac9 fix: permissions 2026-02-09 16:50:50 +03:00
semantic-release-bot
4d87f9d4a1 chore(release): 1.12.0
# [1.12.0](https://github.com/obsqrbtz/goose-highlighter/compare/v1.11.0...v1.12.0) (2026-02-09)

### Features

* list management ([5e3e2bb](5e3e2bbfe4))
2026-02-09 16:47:14 +03:00
5e3e2bbfe4 feat: list management 2026-02-09 16:46:56 +03:00
8a44ad8022 fixed remove from exceptions button 2026-02-09 16:13:28 +03:00
3 changed files with 18 additions and 5 deletions

View File

@@ -1,3 +1,17 @@
## [1.12.1](https://github.com/obsqrbtz/goose-highlighter/compare/v1.12.0...v1.12.1) (2026-02-09)
### Bug Fixes
* permissions ([3e00090](https://github.com/obsqrbtz/goose-highlighter/commit/3e00090ac91ec58f08a46ac9dc826935a0e7085e))
# [1.12.0](https://github.com/obsqrbtz/goose-highlighter/compare/v1.11.0...v1.12.0) (2026-02-09)
### Features
* list management ([5e3e2bb](https://github.com/obsqrbtz/goose-highlighter/commit/5e3e2bbfe40bf3fcceeb4a5de88024ecc6987973))
# [1.11.0](https://github.com/obsqrbtz/goose-highlighter/compare/v1.10.2...v1.11.0) (2025-12-11)

View File

@@ -2,10 +2,9 @@
"manifest_version": 3,
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "1.11.0",
"version": "1.12.1",
"default_locale": "en",
"permissions": [
"contextMenus",
"scripting",
"storage",
"tabs"

View File

@@ -957,9 +957,9 @@ export class PopupController {
});
document.getElementById('exceptionsList')?.addEventListener('click', async (e) => {
const target = e.target as HTMLElement;
if (target.classList.contains('exception-remove')) {
const domain = target.dataset.domain!;
const button = (e.target as HTMLElement).closest('.exception-remove');
if (button) {
const domain = (button as HTMLElement).dataset.domain!;
this.exceptionsList = this.exceptionsList.filter(d => d !== domain);
this.updateExceptionButton();
this.renderExceptions();