Skip to content

Commit 535bad5

Browse files
committed
Release 2.24.1
1 parent 8dcef02 commit 535bad5

10 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
* Versions before 1.0 are in initial development. APIs are not stable for these versions, even a `y` version can involve a breaking change, and only partial notable changes are summarized in this document. See full commit history in the source repository for details.
44
* Backend server requirement in this document refers to the version of [`webscrapbook` Python package](https://github.com/danny0838/pywebscrapbook) (or PyWebScrapBook).
55

6+
## [2.24.1] - 2025-09-15
7+
* Dropped support for Firefox < 79 and Google Chrome < 102.
8+
* Migrated to Manifest V3 for Google Chrome releases.
9+
* Added support for native sidebar for Google Chrome.
10+
* Added support for dynamic extension URLs in web-accessible resources for Google Chrome.
11+
* Miscellaneous improvements to the internal code and test suite.
12+
613
## [2.23.5] - 2025-09-13
714
* Fixed script error in some old browsers.
815

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webscrapbook",
3-
"version": "2.23.5",
3+
"version": "2.24.1",
44
"type": "module",
55
"scripts": {
66
"lint": "eslint",

src/manifest.chromium-mv2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_ExtensionName__",
44
"description": "__MSG_ExtensionDescription__",
5-
"version": "2.23.5",
5+
"version": "2.24.1",
66
"author": "Danny Lin",
77
"default_locale": "en",
88
"minimum_chrome_version": "85",

src/manifest.chromium.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "__MSG_ExtensionName__",
44
"description": "__MSG_ExtensionDescription__",
5-
"version": "2.23.5",
5+
"version": "2.24.1",
66
"author": "Danny Lin",
77
"default_locale": "en",
88
"minimum_chrome_version": "102",

src/manifest.firefox-mv2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_ExtensionName__",
44
"description": "__MSG_ExtensionDescription__",
5-
"version": "2.23.5",
5+
"version": "2.24.1",
66
"author": "Danny Lin",
77
"default_locale": "en",
88
"browser_specific_settings": {

src/manifest.firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "__MSG_ExtensionName__",
44
"description": "__MSG_ExtensionDescription__",
5-
"version": "2.23.5",
5+
"version": "2.24.1",
66
"author": "Danny Lin",
77
"default_locale": "en",
88
"browser_specific_settings": {

test/manifest.chromium-mv2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "WebScrapBook Test Suite",
44
"description": "Test suite for WebScrapBook extension.",
5-
"version": "2.23.5",
5+
"version": "2.24.1",
66
"author": "Danny Lin",
77
"minimum_chrome_version": "85",
88
"background": {

test/manifest.chromium.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "WebScrapBook Test Suite",
44
"description": "Test suite for WebScrapBook extension.",
5-
"version": "2.23.5",
5+
"version": "2.24.1",
66
"author": "Danny Lin",
77
"minimum_chrome_version": "102",
88
"background": {

test/manifest.firefox-mv2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "WebScrapBook Test Suite",
44
"description": "Test suite for WebScrapBook extension.",
5-
"version": "2.23.5",
5+
"version": "2.24.1",
66
"author": "Danny Lin",
77
"browser_specific_settings": {
88
"gecko": {

test/manifest.firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "WebScrapBook Test Suite",
44
"description": "Test suite for WebScrapBook extension.",
5-
"version": "2.23.5",
5+
"version": "2.24.1",
66
"author": "Danny Lin",
77
"browser_specific_settings": {
88
"gecko": {

0 commit comments

Comments
 (0)