Copy Element Text

Copies the text inside elements

Copy Element Text란 무엇입니까?

Copy Element Text은(는) mistweaver.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies the text inside elements"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Copy Element Text 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Enables you to copy the text of an element within the context menu.
Just right click on the link and select "Copy element text".

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

확장 프로그램 기본 정보

이름 Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
공식 URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
설명 Copies the text inside elements
파일 크기 41.63 KB
설치 횟수 564
현재 버전 1.0.0
최근 업데이트 2022-10-19
출시 날짜 2022-10-03
평점 3.60/5 총 5 개의 평점
개발자 mistweaver.co
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}