-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (40 loc) · 1.06 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
{
"manifest_version":3,
"icons":{
"128":"assets/icons/ic_128.png",
"48":"assets/icons/ic_48.png",
"16":"assets/icons/ic_16.png"
},
"name":"TurtlPass",
"short_name": "turtlpass",
"description":"Where Passwords Swim Securely! Unleash Peace of Mind with Turtle-Approved Wisdom. Protecting You, Saving Turtles. \uD83D\uDC22\uD83D\uDCBB\n",
"version":"2.0.0",
"author":"TurtlPass",
"homepage_url":"https://github.com/TurtlPass/turtlpass-chrome-extension",
"permissions":[
"scripting",
"activeTab",
"storage"
],
"action":{
"default_popup":"popup.html"
},
"options_page": "app.html",
"content_scripts":[
{
"matches":[
"http://*/*",
"https://*/*"
],
"all_frames":true,
"js":[
"js/lottie.5.10.0.min.js",
"js/password-visibility.js"
],
"run_at": "document_start"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
}
}