chore: add chrome extension codes

This commit is contained in:
Steven
2022-09-13 22:34:13 +08:00
parent dfc797fe58
commit 48fb6018c0
6 changed files with 107 additions and 1 deletions

16
extension/manifest.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "Corgi",
"description": "Corgi is an URL manager.",
"version": "0.0.1",
"manifest_version": 3,
"omnibox": {
"keyword": "go"
},
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"permissions": ["tabs", "activeTab", "storage"]
}