-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 732 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 732 Bytes
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
{
"manifest_version": 3,
"name": "Amazon Return Notes",
"description": "Add notes and tracking to your Amazon return history.",
"version": "1.0.1",
"author": "Scott Carpenter (scott@payforstay.com)",
"homepage_url": "https://github.com/squatto/amazon-return-notes-extension",
"permissions": [
"storage"
],
"host_permissions": [
"https://www.amazon.com/spr/returns/history*"
],
"content_scripts": [
{
"matches": [
"https://www.amazon.com/spr/returns/history*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"options_page": "options.html",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
}