Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
What is Copy Link With Title?
Copy Link With Title is a Chrome extension developed by Paul Cohn, and its main feature is "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".
Extension Screenshots
Download Copy Link With Title Extension CRX File
Download Copy Link With Title extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
* Copy a link with the title for pasting into a notetaking app for clearer notes * Copy as HTML and paste into code * Copy as Markdown and paste into Reddit or Github * Define your own format for whatever crazy schemes you have Update 2021/08/25: * Updated icon for better visibility in dark mode. Update 2020/01/17: * Newlines work!
Extension Basic Information
Name | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
Official URL | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
Description | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
File Size | 58.18 KB |
Installation Count | 1,412 |
Current Version | 1.0.2 |
Last Updated | 2021-08-25 |
Publish Date | 2020-01-16 |
Rating | 3.54/5 Total 13 Ratings |
Developer | Paul Cohn |
[email protected] | |
Payment Type | free |
Extension Website | https://twitter.com/paulsterr |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Copy Link With Title", "description": "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.", "version": "1.0.2", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage" ] } |