Select & Copy HTML Text

Select part of an HTML document and copy the underlying text to the clipboard!

Select & Copy HTML Textคืออะไร?

Select & Copy HTML Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sevina และคุณลักษณะหลักของมันคือ "Select part of an HTML document and copy the underlying text to the clipboard!"

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

screenshot

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

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

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

                        This extension allows you to select and copy part of the rendered HTML document's text to the clipboard. 

In general, selecting and copying text on a webpage is hard because it is structured in an HTML format with nested elements. This addon lets you overcome this issue by capturing the underlying text behind the HTML document. When the addon is active, you can select any section of the page and copy the resulting text to the clipboard via the copy button at the top-right corner of the page popup. The toolbar button has a red color when the addon is active and a grey color in the inactive state. If you right-click on the toolbar button, there are two select methods to choose from. Try to see which one works best for you.

Note: reloading or scrolling the page inactivates the addon. Please press the toolbar button again to activate it.

If you have a feature request or found a bug to report, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/select-copy-html-text.html).                    

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

ชื่อ Select & Copy HTML Text Select & Copy HTML Text
ID ggolclomgodalkdmpgllmhicgbchickl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/select-copy-html-text/ggolclomgodalkdmpgllmhicgbchickl
คำอธิบาย Select part of an HTML document and copy the underlying text to the clipboard!
ขนาดไฟล์ 26.02 KB
จำนวนการติดตั้ง 675
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2024-01-20
วันที่เผยแพร่ 2022-12-19
ผู้พัฒนา Sevina
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/select-copy-html-text.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/select-copy-html-text.html
URL หน้านโยบายความเป็นส่วนตัว https://mybrowseraddon.com/privacy-policy/developer/sevina.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.1",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Select & Copy HTML Text",
    "homepage_url": "https:\/\/mybrowseraddon.com\/select-copy-html-text.html",
    "description": "Select part of an HTML document and copy the underlying text to the clipboard!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "contextMenus"
    ],
    "action": {
        "default_title": "Select & Copy HTML Text",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}