Copy Link/Tab Name and URL

Copy the name and URL of a link or a Tab.

Copy Link/Tab Name and URLคืออะไร?

Copy Link/Tab Name and URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sites.google.com/site/copylinknameandurl และคุณลักษณะหลักของมันคือ "Copy the name and URL of a link or a Tab."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Link/Tab Name and URL

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

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

                        It adds a command to the context munu on the link and copies the link's name(source anchor) and URL with the plain text format. It also copies the tab's titile and url.
So this extension makes it very easy to share the links with IM, Email, blog and so on.

It has a Preference Page to configure the Format.                    

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

ชื่อ Copy Link/Tab Name and URL Copy Link/Tab Name and URL
ID noakklbbencpgcahamhocalnepfjeeok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-linktab-name-and-url/noakklbbencpgcahamhocalnepfjeeok
คำอธิบาย Copy the name and URL of a link or a Tab.
ขนาดไฟล์ 11.64 KB
จำนวนการติดตั้ง 236
เวอร์ชันปัจจุบัน 3.1
อัปเดตครั้งล่าสุด 2021-04-01
วันที่เผยแพร่ 2020-02-26
ผู้พัฒนา https://sites.google.com/site/copylinknameandurl
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/wadefelix/copylinktabnameandurl
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.1",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/wadefelix\/copylinktabnameandurl",
    "author": "Ren Wei",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "icons\/page-16.png",
        "32": "icons\/page-32.png",
        "48": "icons\/page-48.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}