-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
61 lines (61 loc) · 1.82 KB
/
Copy pathmanifest.json
File metadata and controls
61 lines (61 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "0.2.0",
"description": "__MSG_extDescription__",
"default_locale": "en",
"permissions": ["downloads", "storage", "scripting", "activeTab", "clipboardWrite"],
"host_permissions": ["https://*/*", "http://*/*"],
"icons": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"action": {
"default_title": "TableSnap AI",
"default_popup": "src/ui/popup.html",
"default_icon": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": [
"lib/html-to-image.min.js",
"src/constants/textKeys.js",
"src/i18n/locales/zh-CN.js",
"src/i18n/locales/en-US.js",
"src/i18n/index.js",
"src/utils/domUtils.js",
"src/utils/filenameUtils.js",
"src/utils/imageUtils.js",
"src/utils/sanitizeUtils.js",
"src/platforms/chatgptAdapter.js",
"src/platforms/geminiAdapter.js",
"src/platforms/claudeAdapter.js",
"src/platforms/defaultAdapter.js",
"src/core/settingsManager.js",
"src/core/themeManager.js",
"src/core/styleInjector.js",
"src/core/tableDetector.js",
"src/core/beautifyRenderer.js",
"src/core/exportManager.js",
"src/ui/buttonRenderer.js",
"src/ui/previewModal.js",
"src/ui/floatingToolbar.js",
"src/content/content.js"
],
"css": ["src/styles/injected.css"],
"run_at": "document_idle",
"all_frames": false
}
]
}