Copy Page Title and URL

A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.

什麼是Copy Page Title and URL?

Copy Page Title and URL是由LiDeguang開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.”。

擴展截圖

screenshot
screenshot

下載Copy Page Title and URL擴展crx文件

下載Copy Page Title and URL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        When users share a webpage link with their friends, a simple URL composed of letters and numbers can seem cold and robotic. However, with our extension, users can easily create a personalized link by pressing the keyboard shortcut Ctrl-shift-p. By selecting the desired webpage and pressing the shortcut, the page title will be copied to the clipboard, and the URL will be pasted into the chat window.

This way, friends can easily understand what interesting content you're sharing, without having to read the URL manually. Our extension also allows users to create unique links for different occasions, such as for work, play, or personal use.

With our extension, users can easily and effectively share webpage links with their friends, and create personalized links that showcase their unique style and preferences.

If you encounter any issues while using the extension, please submit an issue on the following GitHub repository: https://github.com/Deguang/link-and-title-copy-pro/issues                    

擴展基本資訊

名稱 Copy Page Title and URL Copy Page Title and URL
ID kakoelinbkchhkjcbgjgmailplkhpkod
官方網址 https://chromewebstore.google.com/detail/copy-page-title-and-url/kakoelinbkchhkjcbgjgmailplkhpkod
簡介 A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.
檔案大小 107 KB
安裝次數 166
目前版本 0.1
更新時間 2023-09-06
上架時間 2023-04-06
開發者 LiDeguang
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Deguang/link-and-title-copy-pro
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Page Title and URL",
    "version": "0.1",
    "description": "A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.",
    "manifest_version": 3,
    "permissions": [
        "clipboardWrite",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "commands": {
        "copy-to-clipboard": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Copy page title and URL to clipboard"
        }
    },
    "icons": {
        "512": "logo.png"
    }
}