Smart Paste

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

Cos'è Smart Paste?

Smart Paste è un'estensione di Chrome sviluppata da https://smartpaste.io, e la sua funzione principale è "A browser extension to automate data entry tasks with form filling and text extraction features".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Smart Paste

Scarica i file di estensione Smart Paste in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Smart Paste Smart Paste
ID gmjbokljijbegndgfhbmobaniejnaali
URL Ufficiale https://chromewebstore.google.com/detail/smart-paste/gmjbokljijbegndgfhbmobaniejnaali
Descrizione A browser extension to automate data entry tasks with form filling and text extraction features
Dimensione del File 8.97 MB
Conteggio Installazioni 792
Versione Corrente 4.1.12
Ultimo Aggiornamento 2023-12-02
Data di Pubblicazione 2022-12-23
Valutazione 4.25/5 Totale 8 Valutazioni
Sviluppatore https://smartpaste.io
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://www.smartpaste.io/
URL della Pagina della Politica sulla Privacy https://www.smartpaste.io/privacy
Lingue Supportate 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"
    ]
}