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": "EasyChat",
"version": "1.1.0",
"description": "Jump to previous prompts in ChatGPT, Claude, Grok, and Gemini conversations",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"content\/chatgpt.js"
],
"css": [
"content\/styles.css"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/claude.ai\/*"
],
"js": [
"content\/claude.js"
],
"css": [
"content\/styles.css"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/grok.com\/*",
"https:\/\/x.com\/i\/grok*"
],
"js": [
"content\/grok.js"
],
"css": [
"content\/styles.css"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/gemini.google.com\/*"
],
"js": [
"content\/gemini.js"
],
"css": [
"content\/styles.css"
],
"run_at": "document_idle"
}
],
"commands": {
"jump-previous": {
"suggested_key": {
"default": "Alt+Up",
"mac": "Alt+Up"
},
"description": "Jump to previous prompt"
},
"jump-next": {
"suggested_key": {
"default": "Alt+Down",
"mac": "Alt+Down"
},
"description": "Jump to next prompt"
}
},
"background": {
"service_worker": "background.js"
}
}