Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Wat is Copy Link With Title?
Copy Link With Title is een Chrome-extensie ontwikkeld door Paul Cohn, en de belangrijkste functie is "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".
Extensie Screenshots
Download het CRX-bestand van de extensie Copy Link With Title
Download Copy Link With Title-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
* 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! Basisinformatie over de Extensie
| Naam | |
| ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
| Officiële URL | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
| Beschrijving | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
| Bestandsgrootte | 58.18 KB |
| Aantal Installaties | 1,412 |
| Huidige Versie | 1.0.2 |
| Laatst Bijgewerkt | 2021-08-25 |
| Publicatiedatum | 2020-01-16 |
| Beoordeling | 3.54/5 Totaal 13 Beoordelingen |
| Ontwikkelaar | Paul Cohn |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://twitter.com/paulsterr |
| Ondersteunde Talen | 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"
]
} | |