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",
"description": "__MSG_extDescription__",
"default_locale": "en",
"permissions": [
"activeTab",
"downloads"
],
"background": {
"service_worker": "scripts\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*"
],
"js": [
"lib\/html2canvas.min.js",
"lib\/jspdf.umd.min.js",
"scripts\/ui-manager.js",
"scripts\/pdf-generator.js",
"scripts\/page-observer.js",
"scripts\/content.js"
],
"css": [
"assets\/styles\/styles.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"lib\/jspdf.umd.min.js",
"lib\/html2canvas.min.js"
],
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_actionTitle__"
},
"icons": {
"16": "assets\/images\/icon16.png",
"32": "assets\/images\/icon32.png",
"48": "assets\/images\/icon48.png",
"128": "assets\/images\/icon128.png"
},
"author": "Youngsu Park"
}