feat(extension): Enhanced HTTP API for YouTube Music support

- Add http.put(), http.delete(), http.patch() shortcut methods
- Add persistent cookie jar per extension
- Add http.clearCookies() to clear session
- Fix User-Agent header respect (no longer overwritten)
- Return multi-value headers as arrays (Set-Cookie support)
- Auto-stringify objects in POST/PUT/PATCH body
- Add response.ok and response.status properties
- Update documentation with YouTube Music example
This commit is contained in:
zarzet
2026-01-12 06:37:18 +07:00
parent 4c09b988e4
commit 35532b0c73
5 changed files with 407 additions and 21 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
/// App version and info constants
/// Update version here only - all other files will reference this
class AppInfo {
static const String version = '3.0.0-alpha.1';
static const String buildNumber = '50';
static const String version = '3.0.0-alpha.2';
static const String buildNumber = '51';
static const String fullVersion = '$version+$buildNumber';