Copy Quote Link

share page text and the link with any formats

Copy Quote Link là gì?

Copy Quote Link là một tiện ích mở rộng Chrome được phát triển bởi negokaz, và tính năng chính của nó là "share page text and the link with any formats".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Copy Quote Link 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

                        # Features

- 🔗 Copy links that contain page title and text content from context menu
- 🔦 Supports for creating a link which can highlight selected text (Scroll To Text Fragment)
- 📝 You can make your own templates to copy

# Usage

- right-click on a page and select a template from "Copy link as" context menu
OR
- press Ctrl+Shift+X (windows/linux) or Command+Shift+X (mac) and select a template on the popup view

For more details, please see the following page.

https://github.com/negokaz/chrome-copy-quote-link#usage

# Custom Templates

To custom the context menu, you can create templates from the extension option page.

You can find some examples on the following page.

https://github.com/negokaz/chrome-copy-quote-link/blob/master/docs/template_examples.md                    

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

Tên Copy Quote Link Copy Quote Link
ID ghekfhokmbflcadbpnpghlmkokcbipde
URL Chính Thức https://chromewebstore.google.com/detail/copy-quote-link/ghekfhokmbflcadbpnpghlmkokcbipde
Mô tả share page text and the link with any formats
Kích Thước Tệp 1.84 MB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2020-08-05
Ngày Phát Hành 2020-07-09
Nhà Phát Triển negokaz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/negokaz/chrome-copy-quote-link
URL Trang Trợ Giúp https://github.com/negokaz/chrome-copy-quote-link/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Quote Link",
    "description": "share page text and the link with any formats",
    "version": "0.2.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "Copy Quote Link",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            }
        }
    }
}