-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
57 lines (57 loc) · 1.29 KB
/
Copy pathmanifest.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"manifest_version": 3,
"name": "Skool Helper – Keyword Feed & Highlights",
"version": "0.6.2",
"description": "Hebt relevante Skool-Beiträge anhand deiner Keywords hervor, zeigt einen Community Round-Robin (welche Communities heute noch offen sind), bietet Kommentar-Ideen. Jede Interaktion bleibt manuell.",
"permissions": [
"storage",
"notifications",
"activeTab",
"alarms"
],
"host_permissions": [
"https://www.skool.com/*",
"https://skool.com/*",
"https://api.github.com/*"
],
"content_scripts": [
{
"matches": [
"https://www.skool.com/*",
"https://skool.com/*"
],
"js": [
"defaults.js",
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_title": "Skool Helper",
"default_popup": "popup.html"
},
"commands": {
"toggle-sidebar": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Skool Helper Sidebar ein-/ausblenden"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}