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": "__MSG_extName__",
"version": "1.0.0",
"description": "__MSG_extDescription__",
"default_locale": "ja",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/bard.google.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/api.notion.com\/*"
],
"action": {
"default_title": "__MSG_actionTitle__",
"default_popup": "panel.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/bard.google.com\/*",
"https:\/\/claude.ai\/*"
],
"js": [
"contentNotion.js",
"contentScript.js"
],
"css": [
"contentStyles.css"
],
"run_at": "document_idle"
}
]
}