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 là gì?

Copy Link With Title là một tiện ích mở rộng Chrome được phát triển bởi Paul Cohn, và tính năng chính của nó là "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copy Link With Title

Tải xuống các tệp mở rộng Copy Link With Title dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        * 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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy Link With Title Copy Link With Title
ID cfbjnjeaoamknmdojhgcblkebcphmcei
URL Chính Thức https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei
Mô tả This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Kích Thước Tệp 58.18 KB
Số Lần Cài Đặt 1,412
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2021-08-25
Ngày Phát Hành 2020-01-16
Đánh Giá 3.54/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Paul Cohn
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://twitter.com/paulsterr
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}