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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://takedajs.hatenablog.jp และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TitleUrlCopy

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}