Initial commit: LinkSyncServer and LinkSyncExtension projects with complete documentation, models, API endpoints, tests, and extension implementation

This commit is contained in:
DavidSaylor
2026-05-11 17:37:10 -05:00
parent ad0b12b452
commit aed69afdfd
691 changed files with 181874 additions and 28 deletions

View File

@@ -0,0 +1,27 @@
{
"manifest_version": 2,
"name": "LinkSync",
"version": "1.0.0",
"description": "Sync bookmarks with LinkSyncServer",
"permissions": [
"bookmarks",
"storage",
"activeTab"
],
"browser_action": {
"default_icon": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"default_title": "LinkSync"
},
"background": {
"page": "background.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{linksync-browser-extension-id}",
"strict_min_version": "109.0"
}
}
}