{"id":18046683,"url":"https://github.com/raphaelsalaja/paths","last_synced_at":"2025-04-10T04:54:26.437Z","repository":{"id":41438778,"uuid":"502194137","full_name":"raphaelsalaja/paths","owner":"raphaelsalaja","description":"Extension for finding shortcuts for popular apps and websites 🛣️","archived":false,"fork":false,"pushed_at":"2022-07-18T09:06:19.000Z","size":1920,"stargazers_count":25,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T02:35:14.663Z","etag":null,"topics":["api","browser","browser-extension","chrome-extension","commands","css","global","html","javascript","jquery","productivity","productivity-booster","productivity-tools","shortcuts","workflow"],"latest_commit_sha":null,"homepage":"https://chrome.google.com/webstore/detail/paths/ccedjbkjnfpmljjlchmpbholoapafhgm","language":"JavaScript","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/raphaelsalaja.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.config.js","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-10T22:16:18.000Z","updated_at":"2024-06-25T08:00:17.000Z","dependencies_parsed_at":"2022-08-10T02:23:50.050Z","dependency_job_id":null,"html_url":"https://github.com/raphaelsalaja/paths","commit_stats":null,"previous_names":["rafunderscore/paths","raphaelsalaja/paths"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaelsalaja%2Fpaths","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaelsalaja%2Fpaths/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaelsalaja%2Fpaths/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raphaelsalaja%2Fpaths/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raphaelsalaja","download_url":"https://codeload.github.com/raphaelsalaja/paths/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248161253,"owners_count":21057553,"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":["api","browser","browser-extension","chrome-extension","commands","css","global","html","javascript","jquery","productivity","productivity-booster","productivity-tools","shortcuts","workflow"],"created_at":"2024-10-30T19:08:29.624Z","updated_at":"2025-04-10T04:54:26.413Z","avatar_url":"https://github.com/raphaelsalaja.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":" \n![Product Hunt _ Screenshot _ asdfasdfdsaf](https://user-images.githubusercontent.com/52125687/178572560-088dd244-f242-4536-8d4b-3f3294e35674.png)\n\u003ca href=\"https://www.producthunt.com/posts/paths-3?utm_source=badge-featured\u0026utm_medium=badge\u0026utm_souce=badge-paths\u0026#0045;3\" target=\"_blank\"\u003e\u003cimg src=\"https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=352591\u0026theme=dark\" alt=\"Paths - Find\u0026#0032;shortcuts\u0026#0032;for\u0026#0032;apps\u0026#0032;and\u0026#0032;websites\u0026#0032;in\u0026#0032;your\u0026#0032;browser | Product Hunt\" style=\"width: 250px; height: 54px;\" width=\"250\" height=\"54\" /\u003e\u003c/a\u003e\n\n## Why would you use this? 🔎\n\nLearning shortcuts and quick commands can almost double your productivity. Paths shows you the all the available shortcuts and commands for the most popular websites and apps that you use on a daily basis.\n\n👉 [Github Link](https://github.com/raf-underscore/paths)\n\n## What can you expect 🤔\n\nUsing this you will be able to search for a shortcut or command and see what it does. You will also be able to run the command by clicking on the shortcut.\n\n## Contributions 🔮\n\nIf you would like to contribute to this project, please open an issue or pull request. \n\nIf you would like to add a shortcut or command you can do so by following these steps:\n\n1. Create a new .js file in the source folder. You can use the template file provided as a starting point.\n\n```\n.\n└── src\n    └── data\n        └── sources\n```\n\n```js\nexport const template = {\n\ttitle: 'Title',\n\ticon: '', // use a favicon, such as https://www.youtube.com/favicon.ico\n\tsections: [\n\t\t{\n\t\t\tname: 'Name1',\n\t\t\tshortcuts: [\n\t\t\t\t{\n\t\t\t\t\tdescription: 'Description 1',\n\t\t\t\t\tkeys: ['Key1', 'Key2'],\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t\t{\n\t\t\tname: 'Name2',\n\t\t\tshortcuts: [\n\t\t\t\t{\n\t\t\t\t\tdescription: 'Description 1',\n\t\t\t\t\tkeys: ['Key1', 'Key2'],\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n}\n```\n2. Add the new file import to the data.js file in the source folder.\n \n```js\nimport {adobe_photoshop} from './sources/adobe-photoshop.js'\n...\nimport {YOUR_CONTRIBUTION_HERE} from './sources/YOUR_CONTRIBUTION,.js'\n\nexport const data = [\n\tadobe_photoshop,\n...\n    YOUR_CONTRIBUTION_HERE,\n]\n```\n \n\n## Local Installation 🏠\n \n - Download and extract the contents\n - In Chrome, open chrome://extensions/\n - Click + Developer mode\n - Click Load unpacked extension…\n - Navigate to the src folder and click OK\n - Enable The Extension\n \n ## Using The Application 🔥\n\nOpening Paths can be done by pressing \u003ckbd\u003e⌘ Command\u003c/kbd\u003e+\u003ckbd\u003eShift\u003c/kbd\u003e+\u003ckbd\u003eY\u003c/kbd\u003e on Mac or \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eShift\u003c/kbd\u003e+\u003ckbd\u003eY\u003c/kbd\u003e on Windows. You can change the shortcut by going to chrome://extensions/shortcuts in Chrome. Also, if you cannnot use the command for some reason, you can also open it by pressing the app button on the top bar.\n\nClosing the app can be done by either clicking on the background, pressing \u003ckbd\u003eEsc\u003c/kbd\u003e or by pressing the icon on the topbar.\n \n## Support 💌\n\nIf you find the app useful and want to support me, you can do so by support me on Product Hunt, giving the repo a star on Github, or by following me on twitter. The links to all can be found below:\n\n👉 [Linktree](https://linktr.ee/raf_underscore)\n\n\u003ch1 align=\"center\"\u003e\n    ENJOY THE APP! 😄\n\u003c/h1\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraphaelsalaja%2Fpaths","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraphaelsalaja%2Fpaths","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraphaelsalaja%2Fpaths/lists"}