Link Text Copier

Show the context menu on any text, then you can choose some command

Link Text Copierคืออะไร?

Link Text Copier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Osteria และคุณลักษณะหลักของมันคือ "Show the context menu on any text, then you can choose some command"

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

screenshot
screenshot

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

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

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

                        This extension is just to copy "TEXT" or some "IMAGES", and show a dialog box from plain text.
Hopefully might work efficiently in your work.

Change Log
================
0.5.1
- Sudden change Workaround for some errors

0.5.0
- Sticked to copying of images on various web sites which have https  protocol

0.4.89
- Minor update after a while
- Turned off useless message dialog
- Some images are copyable, others not

0.4.87
- Widened the range of IMG HTML tags to copy

0.4.85 - 0.4.86
- Upgrade little by little
- Fixed bugs and mistakes

0.4.84
- minor update
- This image copying function is so simple that a needless image can be copied instead of the displayed one.

0.4.82
- Security Update
- Image copying function is available only https sites

0.4.81
- Update after a while
- Made it possible to save some image to clipboard from img HTML tag by clicking on 'Copy All' on them   It takes a couple of seconds to be saved

0.4.75 - 0.4.80
- Fixed stupid bugs and mistakes

0.4.7
- Omitted some wasteful computation.
- Enabled this to search link text which has some hash tags.

0.4.5
- Fixed an issue where text cannot be copied on specific pages.

0.4.4
- Added a dialog closing function with Enter key.

0.4.3
- Fixed some mistakes such as  the "search link text" button not working.
- Workaround for the issue where this extension couldn't get HTML elements including text in web pages where have shadow root.

0.4.2
- Fixed minor details such as removing double quotations included in text.

0.4.1
- Major Update. Hopefully this would be a big help.

0.4.0
- Removed the unnecessary close dialog menu
- Fixed the function to get link text code short.

0.3.7
- Removed prompt command and the window pop up
- Added search link text command

0.3.6
- Fixed copying function for all cases

0.3.2
- Added "close dialog" menu
- Modified some bugs and mistakes on specific pages

0.3.1
- Changed the way of copying function to enable it on as many pages as possible

0.3.0
- Fixed an issue where copying doesn't work at shadowRoot elements

0.2.9
- Workaround for Chrome disallowing execution of notification

0.2.8:
- Fixed an issue where copying doesn't work in frame pages

0.2.7:
- Renewed dialog box css                    

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

ชื่อ Link Text Copier Link Text Copier
ID omgdecchjpeflplknhhgmlhlobgiibge
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-text-copier/omgdecchjpeflplknhhgmlhlobgiibge
คำอธิบาย Show the context menu on any text, then you can choose some command
ขนาดไฟล์ 23.64 KB
จำนวนการติดตั้ง 186
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2024-01-11
วันที่เผยแพร่ 2020-06-30
คะแนน 2.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Osteria
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.6.0",
    "name": "Link Text Copier",
    "default_locale": "ja",
    "description": "Show the context menu on any text, then you can choose some command",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "author": "Osteria",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contents.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject_script.js"
            ],
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "file:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}