Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Temp Chat Launcher",
"description": "Launch temp chats for various LLMs via right-click, prioritizing privacy as temp chats aren't used for training.",
"version": "0.1",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"permissions": [
"scripting",
"contextMenus"
],
"host_permissions": [
"https:\/\/gemini.google.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.mistral.ai\/*",
"https:\/\/chat.qwen.ai\/*",
"https:\/\/grok.com\/*"
],
"action": {
"default_title": "Launch LLM Temporary Chat"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-scripts\/content.js"
]
}
]
}