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": "Perplexity Shortcut",
"version": "1.1",
"description": "Quickly search Perplexity with a keyboard shortcut or context menu",
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"action": [],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"commands": {
"toggle-search": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Toggle Perplexity search input"
}
},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
}
}