├── .gitignore ├── LICENSE ├── README.md ├── misc └── screenshot.png ├── package.json └── src ├── icon.png ├── main-catalina.js └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/copy-url-for-alfred/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/copy-url-for-alfred/HEAD/README.md -------------------------------------------------------------------------------- /misc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/copy-url-for-alfred/HEAD/misc/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/copy-url-for-alfred/HEAD/package.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/copy-url-for-alfred/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/main-catalina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/copy-url-for-alfred/HEAD/src/main-catalina.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallroot/copy-url-for-alfred/HEAD/src/main.js --------------------------------------------------------------------------------