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": "DeepSeek Print to PDF",
"version": "0.0.3",
"description": "Print your DeepSeek chats as PDF.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_title": "deepseek\u6253\u5370f\u5f00\u53d1",
"default_icon": "icons\/icon48.png"
},
"web_accessible_resources": [
{
"resources": [
"imgs\/*",
"content\/*",
"*.js",
"*.css",
"*.png",
"*.svg",
"*.webp",
"*.json",
"*.html",
"*.wasm"
],
"matches": [
"*:\/\/chat.deepseek.com\/*"
]
}
],
"content_scripts": [
{
"matches": [
"*:\/\/chat.deepseek.com\/*"
],
"world": "MAIN",
"js": [
"content\/main.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/chat.deepseek.com\/*"
],
"css": [
"content\/index.css"
],
"js": [
"content\/index.js"
],
"run_at": "document_start"
}
]
}