@chrome-stats/app-pass-sdk 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,6 +37,16 @@ import { activateAppPass } from '@chrome-stats/app-pass-sdk';
|
|
|
37
37
|
const response = await activateAppPass();
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
+
### Manage App Pass
|
|
41
|
+
|
|
42
|
+
To open the App Pass management page:
|
|
43
|
+
|
|
44
|
+
```typescript
|
|
45
|
+
import { manageAppPass } from '@chrome-stats/app-pass-sdk';
|
|
46
|
+
|
|
47
|
+
await manageAppPass();
|
|
48
|
+
```
|
|
49
|
+
|
|
40
50
|
### Server-Side Verification
|
|
41
51
|
|
|
42
52
|
If you need to verify the App Pass status on your server (e.g., to unlock premium features in your backend), follow these steps:
|