Tab Link Copier

Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs

Tab Link Copierคืออะไร?

Tab Link Copier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Volodya Shtenovych และคุณลักษณะหลักของมันคือ "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs"

ภาพหน้าจอของส่วนขยาย

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Tab Link Copier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Copies the current page url and title as a rich text link. 

Useful when you want to refer to a web-page in a document you are writing - with one click on an icon the link gets copied to clipboard so you can later on simply paste it in a google doc or text editor.

To copy the link of the current tab click on the extension's icon or use the keyboard shortcut: Ctrl+Shift+C (Command+Ctrl+C for Mac). In case of using the shortcut this extension will ask for tabs permissions in order to query the current tab's url.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tab Link Copier Tab Link Copier
ID ijkpnaifgolhlcfhcfamddnlnfjpjaji
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji
คำอธิบาย Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
ขนาดไฟล์ 19.26 KB
จำนวนการติดตั้ง 668
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2020-05-02
วันที่เผยแพร่ 2020-05-02
คะแนน 3.67/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา Volodya Shtenovych
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Leksyk/chrome-copy-link
URL หน้าช่วยเหลือ https://github.com/Leksyk/chrome-copy-link
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Link Copier",
    "description": "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs",
    "version": "1.2.3",
    "background": {
        "persistent": false,
        "scripts": [
            "copyLink.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "commands": {
        "copy-link": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "Command+MacCtrl+C"
            },
            "description": "Copy Link as Rich Text"
        },
        "copy-as-plain": {
            "description": "Copy Link and Title as Plain Text"
        }
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}