Smart Paste

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

Smart Paste란 무엇입니까?

Smart Paste은(는) https://smartpaste.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension to automate data entry tasks with form filling and text extraction features"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Smart Paste 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Smart Paste Smart Paste
ID gmjbokljijbegndgfhbmobaniejnaali
공식 URL https://chromewebstore.google.com/detail/smart-paste/gmjbokljijbegndgfhbmobaniejnaali
설명 A browser extension to automate data entry tasks with form filling and text extraction features
파일 크기 8.97 MB
설치 횟수 792
현재 버전 4.1.12
최근 업데이트 2023-12-02
출시 날짜 2022-12-23
평점 4.25/5 총 8 개의 평점
개발자 https://smartpaste.io
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://www.smartpaste.io/
개인정보 보호 정책 페이지 URL https://www.smartpaste.io/privacy
지원되는 언어 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"
    ]
}