Switch target from Brave Origin Nightly to Beta

This commit is contained in:
ObjectAscended
2026-05-11 02:58:56 -07:00
parent 06a1e50b1e
commit 4342ac463f
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -1,14 +1,14 @@
# Brave Origin Windows Unlocker # Brave Origin Windows Unlocker
A TypeScript utility for unlocking Brave Origin Nightly features on Windows by modifying the local application state. A TypeScript utility for unlocking Brave Origin Beta features on Windows by modifying the local application state.
## Overview ## Overview
This tool modifies the Brave Origin Nightly browser's local state configuration to unlock premium features. It works by updating the `Local State` JSON file used by Brave to store user preferences and license validation status. This tool modifies the Brave Origin Beta browser's local state configuration to unlock premium features. It works by updating the `Local State` JSON file used by Brave to store user preferences and license validation status.
## Features ## Features
- ✅ Unlocks Brave Origin Nightly features - ✅ Unlocks Brave Origin Beta features
- ✅ Modifies purchase validation state - ✅ Modifies purchase validation state
- ✅ Updates SKU credentials - ✅ Updates SKU credentials
- ✅ Windows-compatible local data path handling - ✅ Windows-compatible local data path handling
@@ -17,7 +17,7 @@ This tool modifies the Brave Origin Nightly browser's local state configuration
- **Deno** - Modern JavaScript/TypeScript runtime - **Deno** - Modern JavaScript/TypeScript runtime
- **Windows OS** - Designed for Windows file paths - **Windows OS** - Designed for Windows file paths
- **Brave Origin Nightly** - The browser being modified - **Brave Origin Beta** - The browser being modified
- **File Write Permissions** - Access to `%LOCALAPPDATA%` directory - **File Write Permissions** - Access to `%LOCALAPPDATA%` directory
## Installation ## Installation
+2 -2
View File
@@ -1,7 +1,7 @@
const localAppData = Deno.env.get("LOCALAPPDATA"); const localAppData = Deno.env.get("LOCALAPPDATA");
const localStatePath = const localStatePath =
`${localAppData}\\BraveSoftware\\Brave-Origin-Nightly\\User Data\\Local State`; `${localAppData}\\BraveSoftware\\Brave-Origin-Beta\\User Data\\Local State`;
const localState = JSON.parse(await Deno.readTextFile(localStatePath)); const localState = JSON.parse(await Deno.readTextFile(localStatePath));
@@ -19,4 +19,4 @@ localState.skus = {
await Deno.writeTextFile(localStatePath, JSON.stringify(localState)); await Deno.writeTextFile(localStatePath, JSON.stringify(localState));
console.log("Brave Origin Nightly unlocked successfully!"); console.log("Brave Origin Beta unlocked successfully!");