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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}