Selectext: Copy Text from Videos

Copy text directly from videos on Youtube and any site

什麼是Selectext: Copy Text from Videos?

Selectext: Copy Text from Videos是由https://selectext.app開發的Chrome擴展程式,該擴展的主要功能是“Copy text directly from videos on Youtube and any site”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Selectext: Copy Text from Videos擴展crx文件

下載Selectext: Copy Text from Videos擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Tired of typing out text trapped inside of videos? Selectext lets you easily copy on-screen text directly from any video.

Copy notes from lectures, code from tutorials, links from social media videos, or even handwritten text in seconds.

Selectext is designed to speed up your workflow without getting in the way. The video you are watching will be seamlessly enhanced with the ability to copy text - even in full screen. It’s the fastest way to grab the text you want without any unnecessary steps.

Join thousands of other Selectext users to save hours of time every day.

➤ How it works
Simply pause the video and click the Selectext toggle button that comes up in the top left corner. You can then select the text you want from the video and it will be automatically copied to your clipboard. Paste the text anywhere like your favourite note taking app or code editor.

➤ Extra tips
Use the keyboard shortcut instead of clicking the toggle and pausing the video to speed up the process even further - Alt+S on Windows or Option+S on Mac.

Selectext has a customisable menu that allows you to personalise the extension to suit your needs. You can change how the text is displayed, or change how the text is copied to the clipboard. Indentation mode for copying code will preserve the indentation of the code. This is important for programming languages such as Python.

➤ Supported languages and sites
Selectext uses the latest AI Computer Vision (OCR) technology to detect the text in the video.

It supports detecting text in 50+ languages including English, Hindi, Turkish, French, Spanish and many more.

Selectext works on all video sites including Youtube, Udemy, Coursera, Sharepoint, as well as social media sites and university / college lecture recordings. You can even use Selectext on local video files by simply dragging and dropping the video file into the Chrome browser.

➤ Need help?
Check out the tutorial at: https://selectext.app/tutorial

If Selectext isn't working on a video site you use, or if you want a feature to be added, reach out via [email protected] or raise an issue in the 'Support' tab in the Chrome Web Store.                    

擴展基本資訊

名稱 Selectext: Copy Text from Videos Selectext: Copy Text from Videos
ID gkkdmjjodidppndkbkhhknakbeflbomf
官方網址 https://chromewebstore.google.com/detail/selectext-copy-text-from/gkkdmjjodidppndkbkhhknakbeflbomf
簡介 Copy text directly from videos on Youtube and any site
檔案大小 257 KB
安裝次數 200,000
目前版本 3.1.12
更新時間 2024-02-19
上架時間 2020-12-28
評分 4.16/5 共 243 次評分
開發者 https://selectext.app
電子郵箱 [email protected]
付費類型 in_app
擴展官網 https://selectext.app
隱私政策頁面URL https://selectext.app/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Selectext: Copy Text from Videos",
    "version": "3.1.12",
    "manifest_version": 3,
    "icons": {
        "128": "images\/selectext-128-icon.png"
    },
    "description": "Copy text directly from videos on Youtube and any site",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9Y\/g\/NWMX3bsSGb+xMVNRYPH9wKIyoAwKSks\/jxoLEDJuAdXozEUQENCRoHJ\/HTRnHm8ZyC0mBxwO4AYEZa\/2\/HECQ9Fe2u3oZGAFt\/ycfX\/i9ficcEKgbldxzQc0aepWpQJM2spICB0kkqczNi5p+Qo8OO\/TtZ3hBKh8EoSJaOo\/WI4C8V+NgfE8l0UtOhMArzYlZqCfRH9i8NP6frtYSe7DJMAOq7Rh7aBRkrEL1g6yhImfMXlh2bjIcSDlc2XccKldo6liPSgLl0ykmu9SYuLSikMVBh9jQiiv44Cvu22bdcm5USnBurAIPbrHtYJ64Xn7hW6b2t57O6ZAasrBwIDAQAB",
    "permissions": [
        "activeTab",
        "storage",
        "browsingData",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "polyfills\/browser-polyfill.min.js",
                "jquery\/jquery-3.5.1.min.js",
                "jquery\/jquery-ui.min.js",
                "arrive\/arrive.min.js",
                "lodash\/lodash.min.js",
                "selectable\/selectable.js",
                "config.js",
                "common.js",
                "settingsManager.js",
                "login.js",
                "limit.js",
                "review.js",
                "content.js",
                "shortcut.js",
                "iframeListener.js",
                "screenshot.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.selectext.app\/*"
            ],
            "js": [
                "polyfills\/browser-polyfill.min.js",
                "siteListener.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_title": "selectext",
        "default_icon": "images\/selectext-128-icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/image.svg",
                "images\/copy.svg",
                "images\/camera.svg",
                "images\/selectext-logo-filled.svg",
                "fonts\/open_sans\/open-sans-v18-latin-800.woff",
                "fonts\/open_sans\/open-sans-v18-latin-regular.woff",
                "fonts\/open_sans\/OpenSans-Bold.woff",
                "login.html",
                "limit.html",
                "review.html",
                "shadow.css",
                "login.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "copy-text-from-video": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Copy Text from Video"
        },
        "copy-video-screenshot": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Copy Video Screenshot"
        }
    }
}