mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-09 20:47:53 +03:00
Compare commits
5 Commits
list_manag
...
v1.12.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
576ab77fe6 | ||
| 3e00090ac9 | |||
|
|
4d87f9d4a1 | ||
| 5e3e2bbfe4 | |||
| 8a44ad8022 |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -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)
|
# [1.11.0](https://github.com/obsqrbtz/goose-highlighter/compare/v1.10.2...v1.11.0) (2025-12-11)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,10 +2,9 @@
|
|||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "__MSG_extension_name__",
|
"name": "__MSG_extension_name__",
|
||||||
"description": "__MSG_extension_description__",
|
"description": "__MSG_extension_description__",
|
||||||
"version": "1.11.0",
|
"version": "1.12.1",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"contextMenus",
|
|
||||||
"scripting",
|
"scripting",
|
||||||
"storage",
|
"storage",
|
||||||
"tabs"
|
"tabs"
|
||||||
|
|||||||
@@ -957,9 +957,9 @@ export class PopupController {
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById('exceptionsList')?.addEventListener('click', async (e) => {
|
document.getElementById('exceptionsList')?.addEventListener('click', async (e) => {
|
||||||
const target = e.target as HTMLElement;
|
const button = (e.target as HTMLElement).closest('.exception-remove');
|
||||||
if (target.classList.contains('exception-remove')) {
|
if (button) {
|
||||||
const domain = target.dataset.domain!;
|
const domain = (button as HTMLElement).dataset.domain!;
|
||||||
this.exceptionsList = this.exceptionsList.filter(d => d !== domain);
|
this.exceptionsList = this.exceptionsList.filter(d => d !== domain);
|
||||||
this.updateExceptionButton();
|
this.updateExceptionButton();
|
||||||
this.renderExceptions();
|
this.renderExceptions();
|
||||||
|
|||||||
Reference in New Issue
Block a user