Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Qu'est-ce que Copy Link With Title ?
Copy Link With Title est une extension Chrome développée par Paul Cohn, et sa fonction principale est "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Copy Link With Title
Téléchargez les fichiers d'extension Copy Link With Title au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
* 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!
Informations de Base sur l'Extension
Nom | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
URL Officiel | 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. |
Taille du Fichier | 58.18 KB |
Nombre d'Installations | 1,412 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2021-08-25 |
Date de Publication | 2020-01-16 |
Évaluation | 3.54/5 Total 13 Évaluations |
Développeur | Paul Cohn |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://twitter.com/paulsterr |
Langues Prises en Charge | 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" ] } |