-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
74 lines (74 loc) · 2.64 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"manifest_version": 3,
"name": "ByteBelli",
"description": "Extension for ByteBelli web app (bytebelli.com) to save and annotate content from websites natively.",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlrTE+VRT6LZ2rWG8nbv2jqmO9YJKig0IySGgjtuqgaBe0vLOCchvKbA2TtYj02A/umsW9990LVUzE1bUrer2OEMLGqzwK2piC7xFBO6edQM3TQj26LQ1SgjLnjLGKCw8bLFnipeLHgJZiAU/jUeHUNLvp6om1cb7CDj1JwPwzsPxneods/NEHydgLgQmeE8r6UXsBrWdOFvu8ZJTHkoQACVkGz0pMBF11fzxKRF6Sm2aIIF5MAHMreJnjDhJq80tNzQsLGOJ+JorYF4r9oAy8SfabiVRYuChrXNUjTw7HB8hjVRuAEotyDDFYrPFqEJT9ILhOK/t7qfsMP5q14tRNwIDAQAB",
"version": "0.0.0.12",
"action": {
"default_popup": "index.html",
"default_icon": "icon48.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_matches": ["http://localhost/*", "https://localhost/*"],
"js": ["src/scripts/main.tsx"]
},
{
"matches": ["*://twitter.com/*", "*://x.com/*"],
"js": ["src/scripts/siteSaves/twitterSave.tsx"]
},
{
"matches": ["*://instagram.com/*", "*://www.instagram.com/*"],
"js": ["src/scripts/siteSaves/instagramSave.tsx"]
},
{
"matches": ["*://youtube.com/*", "*://www.youtube.com/*"],
"js": ["src/scripts/siteSaves/youtubeSave.tsx"]
},
{
"matches": ["*://news.ycombinator.com/*", "*://www.ycombinator.com/*"],
"js": ["src/scripts/siteSaves/hnSave.tsx"]
},
{
"matches": ["*://reddit.com/*", "*://www.reddit.com/*"],
"js": ["src/scripts/siteSaves/redditSave.tsx"]
}
],
"background": {
"service_worker": "src/scripts/backgroundScript.ts"
},
"permissions": [
"contextMenus",
"commands",
"storage",
"identity",
"activeTab"
],
"oauth2": {
"client_id": "24061352908-5eog00ac2cpk2b3qk3t9u6kn32orco8q.apps.googleusercontent.com",
"scopes": ["openid", "email", "profile"]
},
"commands": {
"toggle-icon-position": {
"suggested_key": {
"default": "Ctrl+Shift+4",
"mac": "Command+Shift+4"
},
"description": "Toggle icon position"
}
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"env": {
"NEXT_PUBLIC_SUPABASE_URL": "https://sjnxdkoqfwuhjxxatbqt.supabase.co",
"NEXT_PUBLIC_SUPABASE_ANON_KEY": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InNqbnhka29xZnd1aGp4eGF0YnF0Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MTM1Mjc0MDQsImV4cCI6MjAyOTEwMzQwNH0.aTT1mSVTYEQYEAh5qKyJzeE9UEHfzeZMWebcIC4swjE",
"VITE_PUBLIC_POSTHOG_KEY": "phc_SVnQNR0Oad9h8pPnAGIqtjKYXqG7Zd2V79Gxir2WMuW",
"VITE_POSTHOG_HOST": "https://us.i.posthog.com",
"ENVIRONMENT": "development"
}
}