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": "Promp - Ask AI from anywhere",
"version": "1.1",
"description": "Highlight text and ask ChatGPT, Claude, or Gemini",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*:\/\/drive.google.com\/*",
"*:\/\/docs.google.com\/*",
"*:\/\/*.sharepoint.com\/*",
"*:\/\/onedrive.live.com\/*",
"*:\/\/mozilla.github.io\/pdf.js\/*"
],
"js": [
"content.js"
],
"css": [
"popup.css"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"*:\/\/drive.google.com\/*",
"*:\/\/docs.google.com\/*",
"*:\/\/*.sharepoint.com\/*",
"*:\/\/onedrive.live.com\/*",
"*:\/\/mozilla.github.io\/*"
],
"js": [
"content.js"
],
"css": [
"popup.css"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"*:\/\/chatgpt.com\/*",
"*:\/\/chat.openai.com\/*",
"*:\/\/claude.ai\/*",
"*:\/\/gemini.google.com\/*",
"*:\/\/bard.google.com\/*"
],
"js": [
"ai-filler.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"popup.css"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_title": "Promp - Ask AI from anywhere"
}
}