-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
executable file
·58 lines (58 loc) · 1.73 KB
/
manifest.json
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
{
"name": "MyレコーダーChromeアシスタント",
"short_name": "Myレコーダーアシスト",
"version": "0.9.4",
"manifest_version": 3,
"description": "勤怠管理システム「Myレコーダー | KING OF TIME」を快適に使えるようにするための拡張機能です。",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true
},
"action": {
"default_icon": "icons/icon19.png",
"default_title": "Myレコーダーアシスタント"
},
"permissions": [
"storage",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"tabs"
],
"declarative_net_request": {
"rule_resources": [{
"id": "modify_headers",
"enabled": true,
"path": "modify_headers.json"
}]
},
"host_permissions": [
"https://s2.ta.kingoftime.jp/independent/recorder/personal/*",
"https://s3.ta.kingoftime.jp/independent/recorder/personal/*",
"https://s2.ta.kingoftime.jp/independent/recorder2/personal/*",
"https://s3.ta.kingoftime.jp/independent/recorder2/personal/*",
"https://slack.com/api/*",
"https://hooks.slack.com/services/*"
],
"content_scripts": [
{
"matches": [
"https://s2.ta.kingoftime.jp/independent/recorder/personal/*",
"https://s3.ta.kingoftime.jp/independent/recorder/personal/*",
"https://s2.ta.kingoftime.jp/independent/recorder2/personal/*",
"https://s3.ta.kingoftime.jp/independent/recorder2/personal/*"
],
"js": [
"src/inject/inject.js"
],
"all_frames": true
}
],
"background": {
"service_worker": "src/background/background.js"
}
}