Docsumo Free OCR Software

Screenshot any webpage or a portion of a webpage and immediately convert it into editable text.

Was ist Docsumo Free OCR Software?

Docsumo Free OCR Software ist eine Chrome-Erweiterung, die von https://docsumo.com entwickelt wurde, und ihr Hauptmerkmal ist "Screenshot any webpage or a portion of a webpage and immediately convert it into editable text.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Docsumo Free OCR Software-Erweiterungs-CRX-Datei herunterladen

Laden Sie Docsumo Free OCR Software-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Using intelligent OCR technology, Docsumo helps you scan, extract, and analyze information from PDFs or images on a website allowing you to process data in 3 easy steps:-

- Press the extension button to select area on page
- Review and edit the extracted text
- Copy and share text from the image

Features
- Extract data from images and screenshots
- Translate captured data automatically
- Review, edit & copy extracted data in real-time

IMPORTANT
Please reload the page after installing the extensions. 

Fair Use Only
We believe that the tool should be used for fair purposes only and that’s why Docsumo’s screenshot reader limits the number of screenshots to 15 screenshots per day in order to avoid getting used for malicious purposes. We have no intention to offer a premium version of this tool with an extended limit as of now.                    

Grundlegende Informationen zur Erweiterung

Name Docsumo Free OCR Software Docsumo Free OCR Software
ID ihmmlfacoffajllfpdfkdikgmoogbnph
Offizielle URL https://chromewebstore.google.com/detail/docsumo-free-ocr-software/ihmmlfacoffajllfpdfkdikgmoogbnph
Beschreibung Screenshot any webpage or a portion of a webpage and immediately convert it into editable text.
Dateigröße 224 KB
Installationsanzahl 55,381
Aktuelle Version 0.2.0
Letztes Update 2023-02-16
Veröffentlichungsdatum 2021-04-13
Bewertung 4.27/5 Insgesamt 131 Bewertungen
Entwickler https://docsumo.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://docsumo.com/privacy-policy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Docsumo Free OCR Software",
    "description": "Screenshot any webpage or a portion of a webpage and immediately convert it into editable text.",
    "version": "0.2.0",
    "manifest_version": 2,
    "offline_enabled": true,
    "icons": {
        "16": ".\/Docsumo-logo-128x128.png",
        "32": ".\/Docsumo-logo-128x128.png",
        "48": ".\/Docsumo-logo-128x128.png",
        "128": ".\/Docsumo-logo-128x128.png"
    },
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistence": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "vue.js",
                "index.js"
            ],
            "css": [
                "index.css"
            ]
        }
    ],
    "commands": {
        "capture-visible-screen": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "Command+Shift+V"
            },
            "description": "Captures the screenshot of a webpage with the area fit to the size of the screen"
        },
        "capture-cropped-screen": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Captures the screenshot of a webpage with the area fit to the size of the screen"
        },
        "cancel_screenshot": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Captures the screenshot of a webpage with the area fit to the size of the screen"
        }
    },
    "web_accessible_resources": [
        "*:\/\/*\/*",
        "images\/*.svg",
        "images\/*.SVG",
        "index.html",
        "newpage.html",
        "indexhelper.js",
        "ProximaNova-Regular.otf",
        "analytics.js",
        "base64.js"
    ],
    "content_security_policy": "img-src 'self' script-src 'self' 'unsafe-inline' 'sha256-oDXd+fUNCbaUNLYPFKefO+HvkXCQMTLGm1sKuiHgxyk=' 'unsafe-eval'",
    "browser_action": {
        "default_title": "Docsumo Free OCR",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        "activeTab",
        "storage"
    ]
}