TitleUrlCopy

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

Co to jest TitleUrlCopy?

TitleUrlCopy to rozszerzenie Chrome opracowane przez https://takedajs.hatenablog.jp, a jego główną funkcją jest „When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia TitleUrlCopy

Pobierz pliki rozszerzeń TitleUrlCopy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa TitleUrlCopy TitleUrlCopy
ID njopknnjcnnjcabniccieedkcpaabbpk
Oficjalny URL https://chromewebstore.google.com/detail/titleurlcopy/njopknnjcnnjcabniccieedkcpaabbpk
Opis When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.
Rozmiar pliku 21.74 KB
Liczba instalacji 2,809
Aktualna Wersja 1.4.1
Ostatnia Aktualizacja 2022-06-22
Data Publikacji 2018-08-30
Ocena 4.86/5 Łącznie 7 Oceny
Deweloper https://takedajs.hatenablog.jp
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://takedajs.hatenablog.jp/entry/2018/04/08/151805
Adres URL Strony Pomocy https://github.com/takedajs/TitleUrlCopy_Chrome/issues
Obsługiwane Języki 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"
    }
}