Skip to content

Add subwatch extension #18929

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions extensions/subwatch/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/subwatch/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
8 changes: 8 additions & 0 deletions extensions/subwatch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Subwatch Changelog

## ✨ [Initial Version] - {PR_MERGE_DATE}

Initial version code. Existing features:

- Add new subscriptions.
- List and delete existing subscriptions.
24 changes: 24 additions & 0 deletions extensions/subwatch/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Subwatch

Turn subscription chaos into financial harmony. Subwatch helps you track, alert, and optimize your subscriptions effortlessly.

> Subwatch on Raycast requires a paid plan on Subwatch.

## Getting started

To get started you need to setup 2 keys:

- `Subwatch - Raycast Key` - This is your personal API key, it's available to every paid user of [Subwatch](https://subwatch.co). To get it head over to the Subwatch extension or app -> settings and copy the raycast key from its section. Insert it in the Raycast `Subwatch - Raycast Key` configuration.
- `Public API Key` - This is a public key and it's the same for every user, you should insert there the following key:

```env
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im56eXplcGhhZW5obHhvb2hycGhjIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDQxOTQzMjgsImV4cCI6MjA1OTc3MDMyOH0.6AboCGgJGqJMTgqUH3LsYmhoWQ8sfEWqdv0cY-1EXIg
```

## License

MIT

## Privacy

This extension respects your privacy and data security. Data is processed according to Raycast's privacy policy.
Binary file added extensions/subwatch/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions extensions/subwatch/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig([
...raycastConfig,
]);
Binary file added extensions/subwatch/metadata/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/subwatch/metadata/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/subwatch/metadata/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading