-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.v3.json
27 lines (27 loc) · 1.04 KB
/
manifest.v3.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
{
"name": "ViHN: Vim for Hacker News",
"short_name": "ViHN",
"description": "Vi-style key bindings for browsing Hacker News",
"author": "Quentin Santos",
"manifest_version": 3,
"version": "0.0.0",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAooYOPfTuX73AcUHgIxxyH4XEsvIDujav9JIs6M+sXJii9lCVlb1kqdbyAYlYmTnZ5MsnFiujybHntGuGmNBvaqsUYqFGbC8RMLJ76bGK+N0HU35qVy7qTS8brpWD7DpXZH+c+xn9w93zPOf3ZcKMbo2f3bUbvAuvEgWSZK3LRJ6gIcDGv0o0wNc7iyxwCMAOq+qpWOfu6nibBD+Bv7/VIoE/6bn/bGHaH/qH8rqmALej5oht/8NjWU+HVyyUFWICy/AdGppjyKkizEtX8TNjijIGVXJLZ2aqoLR279Mv3pdpPMD9wShIrP0eww1c2yiYTKMkarDFdrTy4LP6fLA/nwIDAQAB",
"icons": {
"128": "icon128.png"
},
"permissions": ["storage"],
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": ["https://news.ycombinator.com/*"],
"js": ["get-option.js", "main.js"],
"css": ["main.css"],
"run_at": "document_end"
}
]
}