Skip to content

Commit

Permalink
added sites
Browse files Browse the repository at this point in the history
  • Loading branch information
ginny100 committed Dec 26, 2024
1 parent aa49802 commit 3757ef0
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions pages/popup/src/constants/apps.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
export const availableApps = [
{ name: "Chrome", icon: "๐ŸŒ" },
{ name: "Firefox", icon: "๐ŸฆŠ" },
{ name: "Safari", icon: "๐Ÿงญ" },
{ name: "VS Code", icon: "๐Ÿ“" },
{ name: "Slack", icon: "๐Ÿ’ฌ" },
{ name: "Discord", icon: "๐ŸŽฎ" },
{ name: "Spotify", icon: "๐ŸŽต" },
{ name: "Twitter", icon: "๐Ÿฆ" },
{ name: "Facebook", icon: "๐Ÿ‘ฅ" },
{ name: "Instagram", icon: "๐Ÿ“ธ" },
{ name: "Chrome", icon: "๐ŸŒ", url: "https://www.google.com" },
{ name: "Firefox", icon: "๐ŸฆŠ", url: "https://www.mozilla.org" },
{ name: "Safari", icon: "๐Ÿงญ", url: "https://www.apple.com" },
{ name: "VS Code", icon: "๐Ÿ“", url: "https://www.microsoft.com" },
{ name: "Slack", icon: "๐Ÿ’ฌ", url: "https://www.slack.com" },
{ name: "Discord", icon: "๐ŸŽฎ", url: "https://www.discord.com" },
{ name: "Spotify", icon: "๐ŸŽต", url: "https://www.spotify.com" },
{ name: "Twitter", icon: "๐Ÿฆ", url: "https://www.twitter.com" },
{ name: "Facebook", icon: "๐Ÿ‘ฅ", url: "https://www.facebook.com" },
{ name: "Instagram", icon: "๐Ÿ“ธ", url: "https://www.instagram.com" },
{ name: "TikTok", icon: "๐ŸŽถ", url: "https://www.tiktok.com" },
{ name: "Youtube", icon: "๐ŸŽฅ", url: "https://www.youtube.com" },
{ name: "LinkedIn", icon: "๐Ÿ”—", url: "https://www.linkedin.com" },
{ name: "WhatsApp", icon: "๐Ÿ“ฑ", url: "https://www.whatsapp.com" },
{ name: "Telegram", icon: "๐Ÿ“ฑ", url: "https://www.telegram.org" },
{ name: "Snapchat", icon: "๐Ÿ“ธ", url: "https://www.snapchat.com" },
{ name: "Pinterest", icon: "๐Ÿ“Œ", url: "https://www.pinterest.com" },
] as const;

export type App = typeof availableApps[number];

0 comments on commit 3757ef0

Please sign in to comment.