├── .all-contributorsrc ├── CHANGELOG.md ├── LICENSE ├── README.md └── copy-markdown-url-and-title.js /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "commitType": "docs", 8 | "commitConvention": "angular", 9 | "contributors": [ 10 | { 11 | "login": "mattstein", 12 | "name": "Matt Stein", 13 | "avatar_url": "https://avatars.githubusercontent.com/u/2488775?v=4", 14 | "profile": "https://mattstein.com", 15 | "contributions": [ 16 | "doc" 17 | ] 18 | } 19 | ], 20 | "contributorsPerLine": 7, 21 | "skipCi": true, 22 | "repoType": "github", 23 | "repoHost": "https://github.com", 24 | "projectName": "copy-markdown-url-and-title", 25 | "projectOwner": "chodorowicz" 26 | } 27 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 📆 2024-12-12 2 | - added support for [Zen Browser](https://zen-browser.app/) 3 | 4 | 📆 2023-07-29 5 | version 1.1 6 | - addded support for [Arc](https://arc.net/) 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Jakub Chodorowicz 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Copy Markdown URL and Title 2 | 3 | [](#contributors-) 4 | 5 | 6 | - This script is written using JavaScript automation for macOS. 7 | - It copies URL and title from the current browser in a markdown format - `[Title of Page](https://url.of.page.com)`. 8 | - It has [Raycast](https://www.raycast.com/) specific metadata, but you can use it in any application or context where JavaScript automation is supported. 9 | 10 | ## Currently supported browsers: 11 | - Chromium based browsers 12 | - Google Chrome, 13 | - Chromium, 14 | - Brave Browser, 15 | - Opera, 16 | - Vivaldi, 17 | - Microsoft Edge 18 | - Arc 19 | - Safari 20 | - Firefox based browsers 21 | - Firefox integration is the *worst* since Firefox doesn't support direct AppleScript automation, and the script uses System Events and keystrokes in that case. 22 | - Zen Browser 23 | 24 | ## Contributors 25 | 26 | 27 | 28 | 29 |
Matt Stein 📖 |
33 |