TitleUrlCopy

When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.

TitleUrlCopy란 무엇입니까?

TitleUrlCopy은(는) https://takedajs.hatenablog.jp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

TitleUrlCopy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When you press command+c (mac) or ctrl+c (win) with no character selected, save the site title and URL on the clipboard.
When you want to acquire all tabs: command+c+x (mac) or ctrl+c+x (win).

■option setting
・You can select the information that can be copied from "title & URL", "title only", "URL only" or "Markdown".
・You can choose whether or not to activate functions that can obtain all tabs

■supplementary information
・Currently does not work on some sites, such as the following
https://chrome.google.com/webstore/category/extensions

文字を選択していない状態でcommand+c (mac) or ctrl+c (win) を押下した時、サイトのタイトルとURLをクリップボードに保存します。
全タブを取得したい場合: command+c+x (mac) or ctrl+c+x (win)。

■オプション設定
・コピーできる情報を「タイトル&URL」、「タイトルのみ」、「URLのみ」、「マークダウン」の4つから選択可能できます。
・全タブ取得できる機能を動作させるかどうか選択できます。                    

확장 프로그램 기본 정보

이름 TitleUrlCopy TitleUrlCopy
ID njopknnjcnnjcabniccieedkcpaabbpk
공식 URL https://chromewebstore.google.com/detail/titleurlcopy/njopknnjcnnjcabniccieedkcpaabbpk
설명 When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.
파일 크기 21.74 KB
설치 횟수 2,809
현재 버전 1.4.1
최근 업데이트 2022-06-22
출시 날짜 2018-08-30
평점 4.86/5 총 7 개의 평점
개발자 https://takedajs.hatenablog.jp
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://takedajs.hatenablog.jp/entry/2018/04/08/151805
도움말 페이지 URL https://github.com/takedajs/TitleUrlCopy_Chrome/issues
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TitleUrlCopy",
    "description": "When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.",
    "version": "1.4.1",
    "manifest_version": 3,
    "homepage_url": "https:\/\/github.com\/takedajs\/TitleUrlCopy_Chrome",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}