Copy Text from HTML Extension

Copy text content of an HTML element with Shift + Alt + C

Copy Text from HTML Extension란 무엇입니까?

Copy Text from HTML Extension은(는) juniormayhe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy text content of an HTML element with Shift + Alt + C"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Copy Text from HTML Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        "Copy Text from HTML" allows users to copy the text content of an HTML element with ease. When activated with the hotkey Shift + Alt + C, it removes all HTML tags and attributes, JavaScript code, CSS styles, empty and blank lines, special characters, and commented code, leaving only the plain text content. 

It also handles special cases, such as select elements, lists, and anchor tags within lists, to provide the user with the most accurate and useful text content possible. 

With this extension, copying text from HTML has never been easier or more reliable.

If you find any trouble, try to right click the desired element and then press Shift + Alt + C.                    

확장 프로그램 기본 정보

이름 Copy Text from HTML Extension Copy Text from HTML Extension
ID lidcepffhffngghmeiooaeefcicggcpg
공식 URL https://chromewebstore.google.com/detail/copy-text-from-html-exten/lidcepffhffngghmeiooaeefcicggcpg
설명 Copy text content of an HTML element with Shift + Alt + C
파일 크기 1.54 MB
설치 횟수 55
현재 버전 1.0
최근 업데이트 2023-05-02
출시 날짜 2023-05-01
개발자 juniormayhe
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://juniormayhe.com/contact
개인정보 보호 정책 페이지 URL https://github.com/juniormayhe/PipelineFilterExtension/blob/master/privacy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Text from HTML Extension",
    "version": "1.0",
    "description": "Copy text content of an HTML element with Shift + Alt + C",
    "author": "junior mayhe",
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "store\/16.png",
        "32": "store\/32.png",
        "48": "store\/48.png",
        "128": "store\/128.png"
    },
    "action": {
        "default_title": "Copy Text",
        "default_icon": "icon.png"
    },
    "commands": {
        "copy-text": {
            "suggested_key": {
                "default": "Shift+Alt+C"
            },
            "description": "Copy text only from selected HTML element"
        }
    }
}