Text Extractor

Copy relevant text content from webpages

Text Extractorคืออะไร?

Text Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://businesssoluter.com และคุณลักษณะหลักของมันคือ "Copy relevant text content from webpages"

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

screenshot

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

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

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

                        Extract Body Text of any web page                    

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

ชื่อ Text Extractor Text Extractor
ID agokeolklhaaflhfidpfmohicpolgjdd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/text-extractor/agokeolklhaaflhfidpfmohicpolgjdd
คำอธิบาย Copy relevant text content from webpages
ขนาดไฟล์ 17.61 KB
จำนวนการติดตั้ง 48
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-05-24
วันที่เผยแพร่ 2023-05-24
ผู้พัฒนา https://businesssoluter.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://backlinks.tools/
URL หน้าช่วยเหลือ https://backlinks.tools/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Text Extractor",
    "version": "1.0",
    "description": "Copy relevant text content from webpages",
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}