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": "Local Prompt Chains Vault",
"version": "0.1.0",
"description": "Save and insert prompts and prompt chains at your cursor position. All data is stored locally.",
"permissions": [
"storage",
"activeTab",
"contextMenus",
"sidePanel"
],
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"side_panel": {
"default_path": "panel.html"
},
"web_accessible_resources": [
{
"resources": [
"settings.html"
],
"matches": [
"<all_urls>"
]
}
]
}