image-to-text

An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.

image-to-textคืออะไร?

image-to-text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marwan.sdeek.web และคุณลักษณะหลักของมันคือ "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย image-to-text

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

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

                        Extract text from selected areas in web page, image, video or youtube.

image-to-text works just by selecting area need to extract text from.

image-to-text allows you to copy text from:
    - Web page contains text as an image or inside a video.
    - opened image in a tab
    - opened video in a tab

image-to-text also allows you to extract links.

image-to-text works offline. (That's why it's almost 12MB to include all needed files)                    

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

ชื่อ image-to-text image-to-text
ID kheogcfapledldcmebojknkelnhpjlgd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/image-to-text/kheogcfapledldcmebojknkelnhpjlgd
คำอธิบาย An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.
ขนาดไฟล์ 11.63 MB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2020-06-01
วันที่เผยแพร่ 2020-06-01
คะแนน 1.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา marwan.sdeek.web
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "image-to-text",
    "description": "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab. ",
    "version": "0.0.1",
    "author": "MarwanSdeek ",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/crop_48.png",
        "128": "icons\/crop_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/inactive.png"
    },
    "background": {
        "scripts": [
            "tesseract.min.js",
            "background.js"
        ]
    }
}