{"id":49093832,"url":"https://github.com/craftingmod/capture-hopper","last_synced_at":"2026-04-20T19:35:12.047Z","repository":{"id":205466407,"uuid":"714193175","full_name":"craftingmod/capture-hopper","owner":"craftingmod","description":"Auto-Sorter for Windows 11 Snipping Tool","archived":false,"fork":false,"pushed_at":"2023-11-14T14:28:50.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-11-14T15:37:22.050Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/craftingmod.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2023-11-04T07:13:53.000Z","updated_at":"2023-11-04T15:45:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"9a82692f-32d0-497d-8eb0-4abfc21dd604","html_url":"https://github.com/craftingmod/capture-hopper","commit_stats":null,"previous_names":["craftingmod/capture-hopper"],"tags_count":2,"template":null,"template_full_name":null,"purl":"pkg:github/craftingmod/capture-hopper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fcapture-hopper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fcapture-hopper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fcapture-hopper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fcapture-hopper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/craftingmod","download_url":"https://codeload.github.com/craftingmod/capture-hopper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craftingmod%2Fcapture-hopper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32062767,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2026-04-20T19:35:08.513Z","updated_at":"2026-04-20T19:35:12.041Z","avatar_url":"https://github.com/craftingmod.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CaptureHopper\n\n![Icon](./icon_default.png)\n\n윈도우11 캡처 도구에서 찍은 사진을 자동으로 옮겨주는 도구\n\n## How to use\n1. Git 복사하기\n```\ngit clone https://github.com/craftingmod/capture-hopper.git\n```\n2. 복사한 디렉토리로 간 후 npm 셋업\n```\nnpm i\n```\n3. 빌드\n```\nnpm run build\n```\n4. 실행\n```\nnode ./build/index.js\n```\n5. 오른쪽 알림을 클릭하여 `config.json` 수정\n```json\n{\n  \"capturePath\": \"\", // 스크린샷 저장 경로, \"\"시 기본 저장 경로 사용\n  \"removeOrginal\": false, // 옮기고 제거할 지 여부\n  \"moveNotification\": true, // 옮길 때 알림 띄울 지 여부\n  \"movePattern\": \"\" // 옮길 위치\n}\n```\n * `movePattern`은 옮길 위치를 지정할 수 있음. 밑의 문자열은 자동으로 사진의 날짜를 사용하여 치환 됨.\n   * `{year}`: 연도\n   * `{year2}`: 연도(끝 2자리)\n   * `{month}`: 월(2자리)\n   * `{day}`: 일(2자리)\n   * `{hours}`: 시(2자리)\n   * `{minutes}`: 분(2자리)\n   * `{seconds}`: 초(2자리)\n   * `{orgdir}`: 원래 이미지의 폴더 경로\n   * `{namecode}`: [파일 이름을 기반으로 한 해시](https://stackoverflow.com/questions/7616461/generate-a-hash-from-string-in-javascript)\n * 예시\n```\nD:/Arcihve/{year}-{month}/스크린샷_{year2}{month}{day}_{hours}{minutes}{seconds}\n```\n * 위의 설정으로 `2023년 11월 4일 오전 9시 20분 5초`에 찍힌 사진이면\n```\nD:/Arcihve/2023-11/스크린샷_231104_092005.png\n```\n * 로 저장됨\n6. 수정을 하였으면 다시 실행\n\n7. PROFIT!\n\n## 자동으로 실행하기\n1. npm으로 forever 깔기\n```\nnpm i -g forever\n```\n2. 작업 스케쥴러에서 새 작업 생성\n * 프로그램: `powershell.exe`\n * 인수 추가: `-File \"C:\\Users\\유저이름\\AppData\\Local\\npm\\forever.ps1\" start build/index.js`\n * 시작 위치: `capture-hopper 디렉토리`\n * 로그온 시 실행\n\n3. PROFIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraftingmod%2Fcapture-hopper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcraftingmod%2Fcapture-hopper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraftingmod%2Fcapture-hopper/lists"}