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": "Prompt Manager",
"version": "1.0",
"description": "Manage and integrate prompts for Claude.ai and ChatGPT",
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"https:\/\/claude.ai\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/claude.ai\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"icons": {
"16": "assets\/icon.png",
"48": "assets\/icon.png",
"128": "assets\/icon.png"
}
}