Copy Link Text

Copies the text inside links

Copy Link Textคืออะไร?

Copy Link Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vestakuphal285 และคุณลักษณะหลักของมันคือ "Copies the text inside links"

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

screenshot
screenshot

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

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

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

                        Enables you to copy the text of a link within the context menu.
Just right click on the link and select "Copy link text".

Update ver: 1.12.1
 - Added copy text link history management feature, can review, export file txt and delete log history.
 - You can also share the copy text link history including text and link for you on social networks such as Twitter, LinkedIn and Facebook (automatically share using post api).                    

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

ชื่อ Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
คำอธิบาย Copies the text inside links
ขนาดไฟล์ 565 KB
จำนวนการติดตั้ง 30,654
เวอร์ชันปัจจุบัน 3.0.1
อัปเดตครั้งล่าสุด 2023-11-20
วันที่เผยแพร่ 2020-09-25
คะแนน 3.23/5 รวมทั้งหมด 78 คะแนน
ผู้พัฒนา vestakuphal285
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/pass-generator-2023/home
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Text",
    "description": "Copies the text inside links",
    "default_locale": "en",
    "version": "3.0.1",
    "icons": {
        "16": ".\/icon-128.png",
        "48": ".\/icon-128.png",
        "128": ".\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/content-style.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/anotepad.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}