{"id":42235445,"url":"https://github.com/dotherightthing/streamdeck-clicker","last_synced_at":"2026-01-27T03:17:38.050Z","repository":{"id":216656716,"uuid":"741676608","full_name":"dotherightthing/streamdeck-clicker","owner":"dotherightthing","description":"Stream Deck plugin to automate the mouse in macOS.","archived":false,"fork":false,"pushed_at":"2024-06-09T18:52:41.000Z","size":552,"stargazers_count":1,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-10T13:06:22.634Z","etag":null,"topics":["clicker-automatization","streamdeck-plugin"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dotherightthing.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-01-10T22:05:08.000Z","updated_at":"2024-06-09T18:52:45.000Z","dependencies_parsed_at":"2024-04-10T12:36:32.539Z","dependency_job_id":null,"html_url":"https://github.com/dotherightthing/streamdeck-clicker","commit_stats":null,"previous_names":["dotherightthing/streamdeck-clicker"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dotherightthing/streamdeck-clicker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotherightthing%2Fstreamdeck-clicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotherightthing%2Fstreamdeck-clicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotherightthing%2Fstreamdeck-clicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotherightthing%2Fstreamdeck-clicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotherightthing","download_url":"https://codeload.github.com/dotherightthing/streamdeck-clicker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotherightthing%2Fstreamdeck-clicker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28798794,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T01:07:07.743Z","status":"online","status_checked_at":"2026-01-27T02:00:07.755Z","response_time":168,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["clicker-automatization","streamdeck-plugin"],"created_at":"2026-01-27T03:17:37.195Z","updated_at":"2026-01-27T03:17:38.044Z","avatar_url":"https://github.com/dotherightthing.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# streamdeck-clicker\n\nStream Deck plugin to automate the mouse in macOS.\n\n## Development\n\n### Install\n\n```sh\nstreamdeck link com.dtrt.clicker.sdPlugin/\n```\n\nIf you receive the error *Linking failed* due to a UUID clash\n\n```sh\ncd ~/Library/Application\\ Support/com.elgato.StreamDeck/plugins/ \u0026\u0026 unlink com.dtrt.clicker.sdPlugin/\n```\n\n### Watch for code changes\n\n```sh\n# rebuild and restart the plugin after code changes\n# note: you may have to delete the instance from the button and drag a new one in to see changes to `States` or Property Inspector\nnpm run watch\n```\n\nTo quit Stream Deck app, use the icon in the top right menu bar.\n\n### Logging\n\n#### Node\n\n```ts\nimport streamDeck, { LogLevel } from \"@elgato/streamdeck\";\nconst logger = streamDeck.logger.createScope(\"Clicker\")\nlogger.setLevel(LogLevel.TRACE);\n\nlogger.error('...');\nlogger.info('...');\n```\n\n#### Frontend\n\n```js\nconsole.log('...');\n```\n\n1. Open Property Inspector inside Stream Deck\n2. View the console at \u003chttp://localhost:23654/\u003e\n3. Select *com.dtrt.clicker Property Inspector*\n\n### Debug UI\n\nThe default debugger is available at \u003chttp://localhost:23654/\u003e but it can be slow to debug layout here.\n\nSince all paths are relative, another option is to open `/com.dtrt.clicker.sdPlugin/property-inspector/inspector.html` directly in a web browser.\n\n## Links\n\n* [Create a Stream Deck Plugin to Interact with Webhooks](https://www.thepolyglotdeveloper.com/2020/07/create-stream-deck-plugin-interact-webhooks/)\n* [streamdeck-plugin-template](https://github.com/elgatosf/streamdeck-plugin-template) - official frontend JS template\n* How to add the library to plugins incl those using the Node SDK: [Get the latest library: Add Submodule](https://github.com/elgatosf/streamdeck-plugin-template#add-submodule)\n* [SDK documentation](https://docs.elgato.com/sdk/plugins/overview)\n* Plugin showing all supported HTML elements: [Samples: PISamples](https://docs.elgato.com/sdk/plugins/samples/pisamples)\n* [Marketplace Makers Discord channel](https://discord.gg/GehBUcu627)\n* [MVF1-Streamdeck](https://github.com/f1-tools/MVF1-Streamdeck/blob/main/com.f1-tools.mvf1.sdPlugin/actions/property-inspector/inspector.js) shows how Property Inspector events are done\n\n## Tips\n\n* Node methods are namedspaced, see `com.dtrt.clicker.sdPlugin/bin/plugin.js`\n\n## Attributions\n\n* [v5.1](https://github.com/BlueM/cliclick/releases/tag/5.1) of [cliclick](https://github.com/BlueM/cliclick) - thanks @BlueM for a wonderful library!\n* [@elgato/cli](https://github.com/elgatosf/cli) for plugin scaffolding\n* [Stream Deck SDK for Node.js (Beta)](https://github.com/elgatosf/streamdeck)\n* [Pure CSS Custom Checkbox Style](https://moderncss.dev/pure-css-custom-checkbox-style/)\n* Icons created using [Button Creator for Stream Deck](https://apps.apple.com/us/app/button-creator-for-stream-deck/id1559303865?mt=12)l, [SF Symbols](https://developer.apple.com/sf-symbols/) and [Inkscape](https://inkscape.org/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotherightthing%2Fstreamdeck-clicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotherightthing%2Fstreamdeck-clicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotherightthing%2Fstreamdeck-clicker/lists"}