first commit

This commit is contained in:
编码猿
2025-02-04 19:16:43 +08:00
commit 53ce1dfa30
17 changed files with 415 additions and 0 deletions

21
manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"manifest_version": 2,
"name": "书签管理器",
"description": "一款比谷歌浏览器原生更简洁好用的书签管理器",
"version": "1.0",
"permissions": [
"bookmarks",
"history",
"tabs",
"system.cpu",
"http://*/*",
"https://*/*"
],
"chrome_url_overrides": {
"newtab": "newTab.html"
},
"browser_action": {
"default_icon": "book.png",
"default_popup": "popup.html"
}
}