ClipWords – Copy & Paste Text from Video

A browser extension to copy code and other text from videos.

ClipWords – Copy & Paste Text from Video란 무엇입니까?

ClipWords – Copy & Paste Text from Video은(는) Frontend Masters에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension to copy code and other text from videos."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ClipWords – Copy & Paste Text from Video 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Introducing ClipWords BETA: the ultimate browser extension for students, developers, and learners of all kinds! With our innovative solution, you can effortlessly copy text and code from tutorial videos across any platform, including YouTube. Say goodbye to tedious note-taking and manual transcribing.

To use ClipWords, simply click to activate the extension, then draw a box around the part of the video you want to extract text from. In just a few seconds, the extension will accurately recognize and copy the text for you, making it easy to save, share, or reference later.

Worried about video quality affecting text recognition? No problem! ClipWords utilizes the full video resolution to ensure precise text and code extraction, even if your browser window is small.

Please note that ClipWords is currently in beta. As we continue to develop and improve our groundbreaking extension, we encourage users to provide feedback and report any issues. Together, we can create the ultimate tool for efficient learning and seamless content extraction from tutorial videos. Try ClipWords today and revolutionize the way you learn!                    

확장 프로그램 기본 정보

이름 ClipWords – Copy & Paste Text from Video ClipWords – Copy & Paste Text from Video
ID jiempblledklicpljhofljadhecpjfig
공식 URL https://chromewebstore.google.com/detail/clipwords-%E2%80%93-copy-paste-te/jiempblledklicpljhofljadhecpjfig
설명 A browser extension to copy code and other text from videos.
파일 크기 57.41 KB
설치 횟수 1,014
현재 버전 0.1.0
최근 업데이트 2023-04-12
출시 날짜 2023-04-12
평점 1.20/5 총 5 개의 평점
개발자 Frontend Masters
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://static.frontendmasters.com/assets/legal/PrivacyPolicy.pdf
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ClipWords \u2013 Copy & Paste Text from Video",
    "description": "A browser extension to copy code and other text from videos.",
    "version": "0.1.0",
    "icons": {
        "16": "images\/ClipWords-16.png",
        "32": "images\/ClipWords-32.png",
        "48": "images\/ClipWords-48.png",
        "128": "images\/ClipWords-128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/ClipWords-16.png",
            "32": "images\/ClipWords-32.png",
            "48": "images\/ClipWords-48.png",
            "128": "images\/ClipWords-128.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/tesseract.min.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ]
}