-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
74 lines (74 loc) · 2.07 KB
/
Copy pathmanifest.json
File metadata and controls
74 lines (74 loc) · 2.07 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"manifest_version": 3,
"name": "CSS Sniffer",
"version": "2.0.0",
"description": "The ultimate CSS inspection tool. Hover, inspect, copy, analyze, and export CSS like never before. Design tokens, performance audits, pattern detection, and more.",
"permissions": [
"activeTab",
"sidePanel",
"storage",
"scripting",
"contextMenus"
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"side_panel": {
"default_path": "sidepanel/sidepanel.html"
},
"background": {
"service_worker": "background/service-worker.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"content/utils/dom-helpers.js",
"content/utils/css-filters.js",
"content/utils/keyboard.js",
"content/modules/css-extractor.js",
"content/modules/overlay.js",
"content/modules/pin-manager.js",
"content/modules/inspector.js",
"content/modules/color-palette.js",
"content/modules/typography.js",
"content/modules/variables.js",
"content/modules/contrast.js",
"content/modules/diff.js",
"content/modules/css-editor.js",
"content/modules/style-history.js",
"content/content.js"
],
"css": ["content/content.css"],
"all_frames": true,
"run_at": "document_idle"
}
],
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons/*",
"content/modules/design-tokens.js",
"content/modules/perf-analyzer.js",
"content/modules/snapshot-manager.js",
"content/modules/pattern-detector.js",
"content/modules/responsive-inspector.js",
"content/modules/animation-inspector.js",
"content/modules/cascade-visualizer.js"
],
"matches": ["<all_urls>"]
}
]
}