-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.v3.json
More file actions
77 lines (77 loc) · 1.99 KB
/
Copy pathmanifest.v3.json
File metadata and controls
77 lines (77 loc) · 1.99 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
75
76
77
{
"manifest_version": 3,
"name": "Deprompt",
"description": "A simple and minimal browser extension to help you grow conscious and stay mindful of your AI usage.",
"version": "1.1.1",
"permissions": ["tabs", "storage", "alarms", "scripting", "downloads"],
"host_permissions": [
"*://chat.openai.com/*",
"*://chatgpt.com/*",
"*://*.claude.ai/*",
"*://gemini.google.com/*",
"*://copilot.microsoft.com/*",
"*://*.perplexity.ai/*",
"*://chat.mistral.ai/*",
"*://*.grok.com/*",
"*://chat.qwen.ai/*",
"*://*.meta.ai/*",
"*://chat.deepseek.com/*",
"*://*.kimi.com/*"
],
"optional_host_permissions": ["*://*/*"],
"background": {
"service_worker": "backgroundWorker.js",
"scripts": ["backgroundWorker.js"],
"type": "module"
},
"options_ui": {
"page": "options.html"
},
"icons": {
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"action": {
"default_title": "Deprompt",
"default_icon": {
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"default_popup": "./in-page/popup.html"
},
"web_accessible_resources": [
{
"resources": [
"in-page/blocked_notification.html",
"in-page/blockedNotification.js",
"in-page/blockedNotification.css",
"in-page/reminder.html",
"in-page/reminder.js",
"in-page/reminder.css"
],
"matches": [
"*://chat.openai.com/*",
"*://chatgpt.com/*",
"*://*.claude.ai/*",
"*://gemini.google.com/*",
"*://copilot.microsoft.com/*",
"*://*.perplexity.ai/*",
"*://chat.mistral.ai/*",
"*://*.grok.com/*",
"*://chat.qwen.ai/*",
"*://*.meta.ai/*",
"*://chat.deepseek.com/*",
"*://*.kimi.com/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "deprompt@timknappe.dev",
"strict_min_version": "109.0",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}