SnapText

SnapText is a text genie that can extract text from videos and images, making it easy to copy and paste text from any source.

SnapText란 무엇입니까?

SnapText은(는) Vineeth TR에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SnapText is a text genie that can extract text from videos and images, making it easy to copy and paste text from any source."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Introducing SnapText, the ultimate Chrome extension that empowers users to effortlessly extract text from videos and images. Whether you're browsing through popular video platforms like YouTube, Udemy, Coursera, Skillshare, or even delving into university lecture recordings, SnapText has got you covered.

Here are some outstanding features of SnapText:
- Seamless Compatibility: SnapText works seamlessly across all video sites, ensuring a hassle-free text extraction experience.
- Universality: From educational platforms to university lecture recordings, SnapText can handle a wide range of content sources, allowing you to extract text from diverse video and image formats.
- Effortless Access: With SnapText, accessing the extension is quick and effortless. Simply press 'Alt+C' to select the desired text area, streamlining the text extraction process for your convenience.

Unlock the world of hidden text within videos and images with SnapText – the ultimate companion for capturing valuable information.                    

확장 프로그램 기본 정보

이름 SnapText SnapText
ID algnfpgicpgjofdofjhfngeeafendmcp
공식 URL https://chromewebstore.google.com/detail/snaptext/algnfpgicpgjofdofjhfngeeafendmcp
설명 SnapText is a text genie that can extract text from videos and images, making it easy to copy and paste text from any source.
파일 크기 32.53 KB
설치 횟수 53
현재 버전 1.0.0
최근 업데이트 2023-07-03
출시 날짜 2023-07-02
평점 5.00/5 총 5 개의 평점
개발자 Vineeth TR
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://vineethtrv.github.io/
도움말 페이지 URL https://vineethtrv.github.io/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SnapText",
    "version": "1.0.0",
    "description": "SnapText is a text genie that can extract text from videos and images, making it easy to copy and paste text from any source.",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_title": "Action Button",
        "default_icon": "images\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "contextMenus"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/icon-128.png",
                "images\/error-icon.png"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "snapTextStyles.css"
            ],
            "js": [
                "tesseract.min.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "startSelection": {
            "suggested_key": "Alt+C",
            "mac": "Alt+C",
            "description": "Start Selection"
        }
    }
}