{"id":15674482,"url":"https://github.com/mamoruds/obsidian-open-link-with","last_synced_at":"2025-09-01T20:07:15.185Z","repository":{"id":37616323,"uuid":"357832869","full_name":"MamoruDS/obsidian-open-link-with","owner":"MamoruDS","description":"Open external link with specific brower in Obsidian","archived":false,"fork":false,"pushed_at":"2023-02-01T08:51:48.000Z","size":610,"stargazers_count":42,"open_issues_count":13,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T03:14:41.176Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/MamoruDS.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"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}},"created_at":"2021-04-14T08:35:07.000Z","updated_at":"2025-03-10T09:00:23.000Z","dependencies_parsed_at":"2023-02-14T11:45:40.583Z","dependency_job_id":null,"html_url":"https://github.com/MamoruDS/obsidian-open-link-with","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fobsidian-open-link-with","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fobsidian-open-link-with/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fobsidian-open-link-with/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fobsidian-open-link-with/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MamoruDS","download_url":"https://codeload.github.com/MamoruDS/obsidian-open-link-with/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249675562,"owners_count":21309323,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-10-03T15:45:34.046Z","updated_at":"2025-04-19T10:30:45.833Z","avatar_url":"https://github.com/MamoruDS.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# obsidian-open-link-with\n\n[![all downloads](https://img.shields.io/github/downloads/mamoruds/obsidian-open-link-with/total?style=flat-square)](https://github.com/MamoruDS/obsidian-open-link-with)\n[![latest release](https://img.shields.io/github/v/release/mamoruds/obsidian-open-link-with?style=flat-square)](https://github.com/MamoruDS/obsidian-open-link-with/releases/latest)\n\nChoose your own way to open external links.\n\n## Installation\n\n### Manual installation\n\nDownload zip archive from [releases page](https://github.com/MamoruDS/obsidian-open-link-with/releases). Extract the archive into `\u003cyour vault\u003e/.obsidian/plugins`\nEnable `Open Link With` under `Settings \u003e Community plugins \u003e Installed Plugins`\n\n## Usage\n\nSelect which browser you want to open external link with in plugin's setting menu.\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://github.com/MamoruDS/obsidian-open-link-with/raw/main/assets/screenshot_00.png\" style=\"width: 650px; max-width: 100%;\"\u003e\n\u003c/p\u003e\n\n### Customization\n\nPut your custom profile in plugin's settings menu. Profile should contain `name(string): commands(string[])` which is demonstrated in the following:\n_PS._ If the name in the user defined profile is same as the preset, it will be _ignored_.\n\nExamples:\n\n\u003cdetails\u003e\u003csummary\u003eFor MacOS\u003c/summary\u003e\n\n```json\n{\n    \"waterfox\": [\n        \"/Applications/Waterfox.app/Contents/MacOS/waterfox\"\n    ],\n    \"waterfox-private\": [\n        \"/Applications/Waterfox.app/Contents/MacOS/waterfox\",\n        \"--private-window\"\n    ]\n}\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\u003csummary\u003eFor Windows\u003c/summary\u003e\n\n```json\n{\n    \"opera\": [\n        \"c:/Users/mamoru/AppData/Local/Programs/Opera/launcher.exe\"\n    ],\n    \"opera-private\": [\n        \"c:/Users/mamoru/AppData/Local/Programs/Opera/launcher.exe\",\n        \"--private\"\n    ]\n}\n```\n\n\u003c/details\u003e\n\n### Modifier key bindings\n\nThe plugin supports multiple open settings by binding modifier key after version `0.1.5`. You can set the modifier key bindings to match your personal preferences through the plugin's settings menus.\n\nBy default, any modifier key and any mouse button (left or middle button) click will use the _global_ browser, i.e. the browser profile selected in the setting `Browser`. You can create a custom modifier binding by clicking the `New` button and setting whether the binding is triggered only by middle mouse button clicks. You can create multiple bindings to personalize the plugin's behavior, and the bindings will be matched from top to bottom.\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://github.com/MamoruDS/obsidian-open-link-with/raw/main/assets/screenshot_01.png\" style=\"width: 650px; max-width: 100%;\"\u003e\n\u003c/p\u003e\n\nFor example, in the above setting, the link will be opened by chrome when **shift** is pressed and the **middle** mouse button is clicked; the link will be opened by safari when **shift** is pressed and the **left** mouse button is clicked; in other cases, it will be opened by _global_ browser firefox.\n\n## Changelog\n\n[link](./CHANGELOG.md) of changelogs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmamoruds%2Fobsidian-open-link-with","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmamoruds%2Fobsidian-open-link-with","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmamoruds%2Fobsidian-open-link-with/lists"}