Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Copy Link With Titleとは何ですか?
Copy Link With TitleはPaul Cohnによって開発されたChromeの拡張機能で、その主な機能は「This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.」です。
拡張機能のスクリーンショット
Copy Link With Title拡張機能のCRXファイルをダウンロード
Copy Link With Title拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
* 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!
拡張機能の基本情報
名前 | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
公式URL | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
説明 | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
ファイルサイズ | 58.18 KB |
インストール数 | 1,412 |
現在のバージョン | 1.0.2 |
最終更新日 | 2021-08-25 |
公開日 | 2020-01-16 |
評価 | 3.54/5 合計 13 レビュー |
開発者 | Paul Cohn |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://twitter.com/paulsterr |
対応言語 | 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" ] } |