-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (38 loc) · 898 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
35
36
37
38
{
"manifest_version": 3,
"name": "Turing Pass",
"description": "One password to rule them all",
"version": "0.1",
"icons": {
"16": "public/Turing-pass-many.png",
"48": "public/Turing-pass-many.png",
"128": "public/Turing-pass-many.png"
},
"permissions": [
"activeTab",
"clipboardWrite",
"cookies",
"declarativeContent",
"storage"
],
"host_permissions": [
"<all_urls>",
"https://turing-pass-api-production.up.railway.app/json",
"https://turing-pass-api-production.up.railway.app/"
],
"author": "Jason Boyett",
"content_scripts":[
{
"matches": ["<all_urls>"],
"js": ["src/content.js","src/popup.js"]
}
],
"background": {
"service_worker": "src/background.js"
},
"action": {
"default_popup": "src/popup.html",
"default_title": "Turing Pass",
"default_icon": "public/Turing-pass-many.png"
}
}