forked from bgcho98/DoorayClipboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (33 loc) · 892 Bytes
/
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
{
"name": "Dooray Clipboard",
"version": "1.0.3",
"description": "Dooray에서 제목을 clipboad에 copy를 쉽게 해주자",
"permissions": ["activeTab", "storage"],
"manifest_version": 2,
"content_scripts": [
{
"matches": ["https://nhnent.dooray.com/*"],
"run_at": "document_end",
"css": ["notifications.css"],
"js": ["contentScript.js"]
},
{
"matches": [
"https://mail.cloud.toast.com/toastmail/template/*",
"https://alpha-mail.cloud.toast.com/toastmail/template/*"
],
"run_at": "document_end",
"css": ["notifications.css"],
"js": ["email.js"]
},
{
"matches": ["https://github.nhnent.com/*"],
"run_at": "document_end",
"js": ["github.js"]
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
}
}