Link With Context

Copy the text of a link and its hyperlink as one.

Link With Contextคืออะไร?

Link With Context เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mrjaeger00 และคุณลักษณะหลักของมันคือ "Copy the text of a link and its hyperlink as one."

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

screenshot
screenshot

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

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

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

                        Link With Context lets you provide some context for the links you share.  This is done in 1 of 2 ways:

PLEASE NOTE: After initially installing Link With Context, it will not work on any currently open tabs until they are refreshed.

Copying a link outright: Using Link With Context when you copy a link, what is actually copied is text in the form ' "text of link" -  '.  Ultra useful for sharing reddit links that only make sense if the title is included as well! (and the inspiration for this extensions).

Highlighting text: Using Links With Context on highlighted text, what is actually coped is text in the form ' "highlighted text" -  '.  This will work with any text - you could highlight the whole page and still get a working Link With Context.

There is however a limit to how much text can be copied at a time, and therefore only the first 7500 characters of the highlighted/link text will be included.                    

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

ชื่อ Link With Context Link With Context
ID ghpdiolckpncfliklbmgiljggbokjban
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-with-context/ghpdiolckpncfliklbmgiljggbokjban
คำอธิบาย Copy the text of a link and its hyperlink as one.
ขนาดไฟล์ 9.59 KB
จำนวนการติดตั้ง 749
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2014-09-10
วันที่เผยแพร่ 2014-09-10
คะแนน 3.75/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา mrjaeger00
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link With Context",
    "short_name": "LWC",
    "description": "Copy the text of a link and its hyperlink as one.",
    "version": "0.1.1",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "64": "icon_64.png"
    }
}