Skip to content

Commit

Permalink
modified the domains
Browse files Browse the repository at this point in the history
  • Loading branch information
psycho-baller committed Sep 19, 2024
1 parent 7bbb0d4 commit bb42130
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

<p align="center">
<b>Download:</b>
<a href="https://sniptube.tech/chrome">Chrome/Chromium</a> |
<a href="https://sniptube.tech/firefox">Firefox</a> |
<a href="https://sniptube.tech/edge">Edge</a> |
<a href="https://sniptube.vercel.app/chrome">Chrome/Chromium</a> |
<a href="https://sniptube.vercel.app/firefox">Firefox</a> |
<a href="https://sniptube.vercel.app/edge">Edge</a> |
<a href="/docs/safari.md">Safari for MacOS and iOS</a> |
<a href="https://sniptube.tech">Website</a> |
<a href="https://sniptube.vercel.app">Website</a> |
<a href="https://devpost.com/software/sniptube">Devpost</a>
<a href="https://github.com/psycho-baller/snipTube/assets/81759594/50a6e1e1-fe6d-45a4-8723-15f9a3290c66">(Hackathon Winner)</a>
</p>
Expand Down Expand Up @@ -62,7 +62,7 @@ Your input is my inspiration, and together, we'll make SnipTube even better!

Creating and maintaining SnipTube has been a labor of love, and I'm thrilled to offer it as a free tool for everyone to enjoy. If you find SnipTube valuable and wish to support its development, consider [making a donation](https://ko-fi.com/ramimaalouf). Your contribution will directly contribute to making SnipTube even better and more feature-rich. Additionally, show your appreciation by starring the open-source repository on GitHub and feel free to contribute your ideas and skills to enhance SnipTube's functionality.

Don't miss the chance to revolutionize your YouTube experience. [Download SnipTube now](https://sniptube.tech) and take control of your favorite moments like never before!
Don't miss the chance to revolutionize your YouTube experience. [Download SnipTube now](https://sniptube.vercel.app) and take control of your favorite moments like never before!

## 🤝 Contributing

Expand Down
2 changes: 1 addition & 1 deletion api/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class SummarizeSnip(BaseModel):
origins = [
"https://www.youtube.com",
"http://localhost:3000",
"https://www.sniptube.tech",
"https://www.sniptube.vercel.app",
]

app.add_middleware(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Highlight, tag, annotate, and export your favorite YouTube moments with the power of AI.",
"author": "Rami <[email protected]> (rami-maalouf.tech)",
"license": "MIT",
"homepage_url": "https://sniptube.tech",
"homepage_url": "https://sniptube.vercel.app",
"contributors": [
"Rami <[email protected]> (rami-maalouf.tech)"
],
Expand Down
2 changes: 1 addition & 1 deletion src/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "webextension-polyfill-global";
browser.runtime.onInstalled.addListener((details) => {
// take the user to the demo page after installation in production
if (process.env.NODE_ENV === "production" && details.reason === "install") {
browser.tabs.create({ url: "https://sniptube.tech#demo" });
browser.tabs.create({ url: "https://sniptube.vercel.app#demo" });
}
// browser.contextMenus.create({
// id: "youtube",
Expand Down
4 changes: 2 additions & 2 deletions src/config/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export const siteConfig: SiteConfig = {
slogan: 'Elevate Your YouTube Experience',
description:
'Easily highlight, tag, annotate, summarize, and export your favorite YouTube moments with a click of a button.',
url: 'https://sniptube.tech',
ogImage: 'https://sniptube.tech/og.jpg',
url: 'https://sniptube.vercel.app',
ogImage: 'https://sniptube.vercel.app/og.jpg',
links: {
// twitter: "https://twitter.com/",
github: 'https://github.com/psycho-baller/sniptube',
Expand Down
2 changes: 1 addition & 1 deletion src/lib/constants.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const URL =
process.env.NODE_ENV === "production" ? `https://www.sniptube.tech/api` : "http://localhost:3000/api";
process.env.NODE_ENV === "production" ? `https://www.sniptube.vercel.app/api` : "http://localhost:3000/api";

export const sortByOptions = ["Newest", "Oldest", "Timestamp", "Reverse timestamp", "A-Z", "Z-A"] as const;

Expand Down

0 comments on commit bb42130

Please sign in to comment.