Initial commit of MyWorkspace - contains multiple projects and global workspace configuration

This commit is contained in:
DavidSaylor
2026-05-06 22:59:37 -05:00
commit 019e35b488
2520 changed files with 13634 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{
"manifest_version": 2,
"name": "linkdingsync",
"version": "1.0.0",
"description": "Sync browser bookmarks with your self-hosted Linkding instance. Supports folder hierarchy, bi-directional sync, and configurable sync modes.",
"permissions": [
"bookmarks",
"storage",
"alarms",
"unlimitedStorage"
],
"browser_action": {
"default_title": "LinkdingSync",
"default_icon": {
"48": "icons/icon-48.svg",
"96": "icons/icon-96.svg"
},
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"options_ui": {
"page": "background.html"
},
"homepage_url": "https://github.com/sissbruecker/linkding"
}