Smart Paste

A browser extension to automate data entry tasks with form filling and text extraction features

¿Qué es Smart Paste?

Smart Paste es una extensión de Chrome desarrollada por https://smartpaste.io, y su función principal es "A browser extension to automate data entry tasks with form filling and text extraction features".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Smart Paste

Descarga archivos de extensión Smart Paste en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Introducing Smart Paste - the ultimate tool for hassle-free data entry! With Smart Paste, you can save time and effort by automating repetitive tasks such as extracting common fields from websites and putting them into a table or extracting tables from PDFs and websites to Excel format.

But that's not all! Smart Paste also has the ability to autofill forms from table data, making it even easier to get your work done quickly and efficiently. And if you need to fill out forms using data from different tabs on Chrome, Smart Paste has got you covered.

Don't waste any more time on tedious data entry tasks. Download Smart Paste now and make your life easier!


This application replaces the default Chrome pdf viewer with pdf.js to render PDF files, so we wanted to shout them out!

If you have feedback or feature suggestions, email us at [email protected]!

We are also looking to give away a few discounted pro licenses if you're willing to hop on a 15-minute call here: calendly.com/smartpaste/15

Version Updates:
Version 4.1.12
 - Fix ORIGIN check
Version 4.1.11
 - New pdf.js version, fixed pdfs that need auth
 - New sidebar vertical movement 
Version 4.1.10
- Fixes some PDF table copy for multiple lines 
Version 4.1.9
- Add login button from sidebar
Version 4.1.8
- Usage analytics
Version 4.1.7
- Fix filling PDF forms and don't clear inputs on exiting the extension
Version 4.1.6
- Stop propagation when typing in the input fields
- Consistent templates when DOM updates
Version 4.1.5
- Fix field updates on change URL
Version 4.1.4
- Fix login through website
Version 4.1.3
- Smart Paste will no longer overwrite inputs where the user inputs data. It will only modify inputs it auto-fills.
Version 4.1.2
- Fixed Extract consistency issue, Fields to Table data should be consistent across same URL
Version 4.1.1
- Fixed bugs with the extension not closing, form filling pill UIs not appearing, and extract fields not updating when switching tabs.
Version 4.1.0
- Added Hotkeys to extract tables, add fields to a table and fill forms from tables
- Simplified the onboarding page
- Added a toggle to disable suggested data sources when filling forms
- Improved the auto data source suggestion logic
- Many many bug fixes
Version 4.0.1
- Added a new logo for better visibility in all backgrounds.
- Added a minimize button so the sidebar won't cover input forms.
- Fixed a bug where some input overlays won't follow the page when you scroll.
Version 4
- Added a beautiful new sidebar UI to support all the new features.
- Added auto form-filling from fields and tables
- Added fields extraction
- Added fields extraction to tables
- Added ability to import tables from excel
Version 3.1
- Added an option to extract data as text, not just as tables
Version 3.0
- Pro users can now parse tables from any website
- Improved OCR accuracy
- Introduced clear installation instructions for PC and Mac
- Updated the extension popup for easy access to installation and usage instructions
Version 2.0
- Added OCR to parse tables from images
- Users will no longer have problems when they parse single-column tables
Version 1.0
- Now works with Windows computers
- Improved PDF table parsing (e.g. tables in i94 PDFs)
Version 0.1
- Alpha launch                    

Información Básica de la Extensión

Nombre Smart Paste Smart Paste
ID gmjbokljijbegndgfhbmobaniejnaali
URL Oficial https://chromewebstore.google.com/detail/smart-paste/gmjbokljijbegndgfhbmobaniejnaali
Descripción A browser extension to automate data entry tasks with form filling and text extraction features
Tamaño del Archivo 8.97 MB
Cantidad de Instalaciones 792
Versión Actual 4.1.12
Última Actualización 2023-12-02
Fecha de Publicación 2022-12-23
Calificación 4.25/5 Total de 8 Calificaciones
Desarrollador https://smartpaste.io
Correo electrónico [email protected]
Tipo de Pago in_app
Sitio Web de la Extensión https://www.smartpaste.io/
URL de la Página de Política de Privacidad https://www.smartpaste.io/privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart Paste",
    "description": "A browser extension to automate data entry tasks with form filling and text extraction features",
    "manifest_version": 3,
    "version": "4.1.12",
    "externally_connectable": {
        "matches": [
            "https:\/\/cdnjs.cloudflare.com\/*"
        ]
    },
    "icons": {
        "64": "icon64.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "app.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "file_browser_handlers": [
        {
            "id": "open-as-pdf",
            "default_title": "Open with PDF Viewer",
            "file_filters": [
                "filesystem:*.pdf"
            ]
        }
    ],
    "incognito": "split",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Click to open Smart Paste",
        "default_icon": "icon128.png"
    },
    "storage": {
        "managed_schema": "pdfjs\/preferences_schema.json"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "pdfjs\/*",
                "*",
                "http:\/*",
                "https:\/*",
                "ftp:\/*",
                "file:\/*",
                "chrome-extension:\/*",
                "blob:*",
                "data:*",
                "filesystem:\/*",
                "drive:*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "permissions": [
        "cookies",
        "clipboardWrite",
        "tabs"
    ]
}