-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
31 lines (31 loc) · 935 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
{
"name": "amazon-to-notion",
"description": "Amazon.co.jp の書誌情報を Notion の DB に登録する Chrome 拡張機能です。",
"version": "0.1.0",
"manifest_version": 3,
"host_permissions": ["https://api.notion.com/"],
"action": {
"default_popup": "src/html/popup.html",
"default_icon": {
"16": "src/images/icon-16.png",
"32": "src/images/icon-32.png",
"48": "src/images/icon-48.png",
"128": "src/images/icon-128.png"
}
},
"content_scripts": [
{
"matches": ["https://www.amazon.co.jp/*", "https://www.amazon.com/*", "https://booklog.jp/item/*"],
"run_at": "document_idle",
"js": ["src/js/content.js"]
}
],
"options_page": "src/html/options.html",
"permissions": ["storage"],
"icons": {
"16": "src/images/icon-16.png",
"32": "src/images/icon-32.png",
"48": "src/images/icon-48.png",
"128": "src/images/icon-128.png"
}
}