Screenshot to Text - Beta

Click and drag to select part of a webpage, and read it as text!

Screenshot to Text - Betaคืออะไร?

Screenshot to Text - Beta เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Click and drag to select part of a webpage, and read it as text!"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Screenshot to Text - Beta

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

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

                        Screenshot To Text / Browser Extension
Turn any drag and drop selection to text by harnessing the power of OCR!

Usage:
1. Click the extension
2. Drag and drop to place a box around the text you want to extract
3. The text will pop up in Alert box once the OCR completes!
Usecases:
Great for extracting text from images with clear text. We needed this for a website with a lot of text in images, where some users need to extract text for translation to their primary language. This can easily be adjusted to read other languages, it's currently set to "eng (english)" but could be changed in a minute. This also has potentially use for blind users with screenreaders, but it does not address the challenge of placing the selection in the correct part of the image. TesseractJS has a function that supports finding text coordinates within an image, so this is a feasible future enhancement.

Supported Websites:
Currently does not run on most sites, since the OCR is run on the primary worker, which is consumed/restricted in most large sites. Works on:

- zingylearning.com (target site)
- google.com, docs.google.com, cloud.google.com (and other google domains)
- amazon.com, netflix.com
- youtube.com, espn.com 

Not working on: yahoo, facebook, linkedin, github, etc

Derived from:
Screenshot Capture, by Simeon Velichkov
github: https://github.com/simov/screenshot-capture
paypal: https://www.paypal.me/simeonvelichkov
TesseractJS chrome extension, by Jerome Wu
github: https://github.com/jeromewu/tesseract.js-chrome-extension
sponsor: https://github.com/sponsors/jeromewu                    

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

ชื่อ Screenshot to Text - Beta Screenshot to Text - Beta
ID fpmhfgogalamnijkkcddamnobhdioedn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/screenshot-to-text-beta/fpmhfgogalamnijkkcddamnobhdioedn
คำอธิบาย Click and drag to select part of a webpage, and read it as text!
ขนาดไฟล์ 70.07 KB
จำนวนการติดตั้ง 776
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-12-14
วันที่เผยแพร่ 2021-12-14
คะแนน 1.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Unknown
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jordansafer/screenshot-to-text
URL หน้าช่วยเหลือ https://github.com/jordansafer/screenshot-to-text
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Screenshot to Text - Beta",
    "version": "1.0",
    "description": "Click and drag to select part of a webpage, and read it as text!",
    "browser_action": {
        "default_icon": {
            "19": "\/images\/icon19.png",
            "38": "\/images\/icon38.png"
        },
        "default_title": "Screenshot to Text - Beta"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "\/images\/Jcrop.gif",
        "\/images\/pixel.png"
    ],
    "commands": {
        "take-screenshot": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Take Screenshot"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "activeTab"
    ]
}