Copy URL To Clipboard

Copy document URL / link URL to clipboard as HTML, Markdown, Text etc.

Copy URL To Clipboard là gì?

Copy URL To Clipboard là một tiện ích mở rộng Chrome được phát triển bởi https://asamuzak.jp, và tính năng chính của nó là "Copy document URL / link URL to clipboard as HTML, Markdown, Text etc.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copy URL To Clipboard

Tải xuống các tệp mở rộng Copy URL To Clipboard 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 document URL / link URL to clipboard as HTML, Markdown, Plain Text etc.

* When copying the URL of the page, right-click anywhere on the page and open the context menu, then select the format to copy.
* When you right-click on a link (an anchor element), you can copy the URL of that link.
* If you select some text before right-click, that selected text will be used for the content of the link.
* You can edit content text when copying.
* Copy to clipboard can be executed from the context menu, the tool button, or keyboard shortcut.

NOTE: Currently, enabled only on (X)HTML documents.                    

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

Tên Copy URL To Clipboard Copy URL To Clipboard
ID miancenhdlkbmjmhlginhaaepbdnlllc
URL Chính Thức https://chromewebstore.google.com/detail/copy-url-to-clipboard/miancenhdlkbmjmhlginhaaepbdnlllc
Mô tả Copy document URL / link URL to clipboard as HTML, Markdown, Text etc.
Kích Thước Tệp 157 KB
Số Lần Cài Đặt 22,944
Phiên Bản Hiện Tại 12.0.0
Cập Nhật Lần Cuối 2024-02-06
Ngày Phát Hành 2020-07-01
Đánh Giá 3.83/5 Tổng số 41 Đánh Giá
Nhà Phát Triển https://asamuzak.jp
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/asamuzaK/url2clipboard
URL Trang Trợ Giúp https://github.com/asamuzaK/url2clipboard/issues
Ngôn Ngữ Được Hỗ Trợ en,en-GB,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "mjs\/background.js",
        "type": "module"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            }
        },
        "commandCopyHTMLPlain": {
            "description": "__MSG_commandCopyHTMLPlain__"
        },
        "commandCopyHTMLHyper": {
            "description": "__MSG_commandCopyHTMLHyper__"
        },
        "commandCopyMarkdown": {
            "description": "__MSG_commandCopyMarkdown__"
        },
        "commandCopyBBCodeText": {
            "description": "__MSG_commandCopyBBCodeText__"
        },
        "commandCopyBBCodeURL": {
            "description": "__MSG_commandCopyBBCodeURL__"
        },
        "commandCopyTextile": {
            "description": "__MSG_commandCopyTextile__"
        },
        "commandCopyAsciiDoc": {
            "description": "__MSG_commandCopyAsciiDoc__"
        },
        "commandCopyMediaWiki": {
            "description": "__MSG_commandCopyMediaWiki__"
        },
        "commandCopyJira": {
            "description": "__MSG_commandCopyJira__"
        },
        "commandCopyreStructuredText": {
            "description": "__MSG_commandCopyreStructuredText__"
        },
        "commandCopyLaTeX": {
            "description": "__MSG_commandCopyLaTeX__"
        },
        "commandCopyOrgMode": {
            "description": "__MSG_commandCopyOrgMode__"
        },
        "commandCopyTextURL": {
            "description": "__MSG_commandCopyTextURL__"
        },
        "commandCopyTextOnly": {
            "description": "__MSG_commandCopyTextOnly__"
        },
        "commandCopyURLOnly": {
            "description": "__MSG_commandCopyURLOnly__"
        }
    },
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/asamuzaK\/url2clipboard",
    "icons": {
        "16": "img\/icon-black-16.png",
        "32": "img\/icon-black-32.png",
        "48": "img\/icon-color-48.png",
        "96": "img\/icon-color-96.png",
        "128": "img\/icon-color-128.png"
    },
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "optional_permissions": [
        "notifications"
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "html\/options.html"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "offscreen",
        "scripting",
        "storage",
        "tabs"
    ],
    "short_name": "__MSG_extensionShortName__",
    "version": "12.0.0",
    "action": {
        "default_icon": {
            "16": "img\/icon-color-16.png",
            "32": "img\/icon-color-32.png"
        },
        "default_popup": "html\/popup.html",
        "default_title": "__MSG_extensionName__"
    }
}