33 lines
839 B
JSON
33 lines
839 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "雪球 Cookie 复制",
|
|
"version": "0.1.0",
|
|
"description": "读取本地 xueqiu.com 的 HttpOnly Cookie,一键复制到剪贴板(多种格式)。",
|
|
"permissions": ["cookies", "clipboardWrite", "tabs"],
|
|
"host_permissions": [
|
|
"https://xueqiu.com/*",
|
|
"https://*.xueqiu.com/*"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://xueqiu.com/*", "https://*.xueqiu.com/*"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "复制雪球 Cookie",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|