{"id":18513378,"url":"https://github.com/zigamacele/lien","last_synced_at":"2026-04-25T21:32:41.261Z","repository":{"id":234757490,"uuid":"787535398","full_name":"zigamacele/lien","owner":"zigamacele","description":"Add custom links to your status bar","archived":false,"fork":false,"pushed_at":"2024-08-08T17:35:42.000Z","size":68,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-14T12:21:13.168Z","etag":null,"topics":["vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=zigamacele.lien","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zigamacele.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["zigamacele"]}},"created_at":"2024-04-16T17:56:25.000Z","updated_at":"2024-08-08T18:59:32.000Z","dependencies_parsed_at":"2024-11-06T15:55:23.076Z","dependency_job_id":null,"html_url":"https://github.com/zigamacele/lien","commit_stats":null,"previous_names":["zigamacele/lien"],"tags_count":0,"template":false,"template_full_name":"antfu/starter-vscode","purl":"pkg:github/zigamacele/lien","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigamacele%2Flien","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigamacele%2Flien/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigamacele%2Flien/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigamacele%2Flien/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zigamacele","download_url":"https://codeload.github.com/zigamacele/lien/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigamacele%2Flien/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32278249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T18:29:39.964Z","status":"ssl_error","status_checked_at":"2026-04-25T18:29:32.149Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["vscode","vscode-extension"],"created_at":"2024-11-06T15:37:56.981Z","updated_at":"2026-04-25T21:32:41.247Z","avatar_url":"https://github.com/zigamacele.png","language":"TypeScript","funding_links":["https://github.com/sponsors/zigamacele"],"categories":[],"sub_categories":[],"readme":"\u003ch2 align=\"center\"\u003e\u003cimg src=\"./res/icon.png\" height=\"128\"\u003e\u003cbr\u003eLien\u003c/h2\u003e\n\u003cp align=\"center\"\u003e\u003cstrong\u003eLink Status Bar Manager for Visual Studio Code\u003c/strong\u003e\u003c/p\u003e\n\n\u003cimg align=\"center\" alt=\"Lien status bar screenshot\" src=\"https://github.com/user-attachments/assets/e3213995-fa10-44ca-96c1-fc4e01d2db29\"\u003e\n\n\u0026nbsp;\n\nList of available icons can be found [here](https://code.visualstudio.com/api/references/icons-in-labels#icon-listing).\n\n\n## Installation\n\nLien can be installed via the VS Code [Marketplace](https://marketplace.visualstudio.com/items?itemName=zigamacele.lien).\n\n## Configuration\nTo configure Lien, follow these guidelines:\n\n### Global Settings\nTo apply the settings globally across all your projects, add the following configuration to your user settings:\n\n1. Open the Command Palette (Cmd+Shift+P on macOS, Ctrl+Shift+P on Windows/Linux).\n2. Type: `Preferences: Open User Settings (JSON)` and select it.\n3. Use `lien.user.links` to add your custom links to the settings JSON file:\n\n```json\n{\n  \"lien.user.links\": [\n    {\n      \"name\": \"Supabase\", // \u003c-- Can be left empty if you don't want a label\n      \"icon\": \"database\", // \u003c-- Can be left empty if you don't want an icon\n      \"link\": \"https://www.google.com\",\n      \"tooltip\": \"Open source Firebase alternative\" // \u003c-- (Optional) Name is used as tooltip if there is no tooltip provided\n    },\n    {\n      \"name\": \"AdSense\",\n      \"icon\": \"dashboard\",\n      \"link\": \"google.com/adsense\"\n    }\n  ]\n}\n```\n\n### Project-Specific Settings\nTo apply the settings only to a specific project, add the configuration to the `.vscode/settings.json` file within your project directory:\n\n1. Open your project in VS Code.\n2. Create or open the `.vscode/settings.json` file in the root of your project.\n3. Use `lien.workspace.links` to add your custom links to the settings JSON file:\n\n```json\n{\n  \"lien.workspace.links\": [\n    {\n      \"name\": \"Swagger\", // \u003c-- Can be left empty if you don't want a label\n      \"icon\": \"bracket\", // \u003c-- Can be left empty if you don't want an icon\n      \"link\": \"https://api.website.com/q/swagger-ui/\",\n    },\n    {\n      \"name\": \"Locize\",\n      \"icon\": \"location\",\n      \"link\": \"https://www.locize.app/\"\n      \"tooltip\": \"Localization management platform\" // \u003c-- (Optional) Name is used as tooltip if there is no tooltip provided\n    },\n    {\n      \"name\": \"Jira\",\n      \"icon\": \"extensions-configure-recommended\",\n      \"link\": \"https://name.atlassian.net/jira/software/c/projects/XYZ6/\"\n    },\n    {\n      \"name\": \"Confluence\",\n      \"icon\": \"output-view-icon\",\n      \"link\": \"https://name.atlassian.net/wiki/spaces/XYZ6/pages/\"\n    },\n    {\n      \"name\": \"Prod\",\n      \"icon\": \"server-environment\",\n      \"link\": \"https://app.website.com\"\n    },\n    {\n      \"name\": \"Test\",\n      \"icon\": \"server-environment\",\n      \"link\": \"https://test.website.com\"\n    },\n    {\n      \"name\": \"Dev\",\n      \"icon\": \"server-environment\",\n      \"link\": \"https://dev.website.com\"\n    }\n  ]\n}\n```\n\n\n\n## License\n\n[MIT](./LICENSE) License © 2024 [Ziga Macele](https://github.com/zigamacele)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzigamacele%2Flien","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzigamacele%2Flien","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzigamacele%2Flien/lists"}