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ファイルをダウンロード

TitleUrlCopy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}