TitleUrlCopy

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

¿Qué es TitleUrlCopy?

TitleUrlCopy es una extensión de Chrome desarrollada por https://takedajs.hatenablog.jp, y su función principal es "When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión TitleUrlCopy

Descarga archivos de extensión TitleUrlCopy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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つから選択可能できます。
・全タブ取得できる機能を動作させるかどうか選択できます。                    

Información Básica de la Extensión

Nombre TitleUrlCopy TitleUrlCopy
ID njopknnjcnnjcabniccieedkcpaabbpk
URL Oficial https://chromewebstore.google.com/detail/titleurlcopy/njopknnjcnnjcabniccieedkcpaabbpk
Descripción When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.
Tamaño del Archivo 21.74 KB
Cantidad de Instalaciones 2,809
Versión Actual 1.4.1
Última Actualización 2022-06-22
Fecha de Publicación 2018-08-30
Calificación 4.86/5 Total de 7 Calificaciones
Desarrollador https://takedajs.hatenablog.jp
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://takedajs.hatenablog.jp/entry/2018/04/08/151805
URL de la Página de Ayuda https://github.com/takedajs/TitleUrlCopy_Chrome/issues
Idiomas Soportados 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"
    }
}