Copyables

Makes the text/label of focused links copyable. Also via contextmenu.

Copyables란 무엇입니까?

Copyables은(는) Rudie Dirkx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes the text/label of focused links copyable. Also via contextmenu."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Makes the text/label of focused links copyable by using the normal copy keyboard command (CTRL + V for me).

Adds a contextmenu option to copy an element's text, for instance a link's label or a table cell's content.

Adds a contextmenu option to find background images.                    

확장 프로그램 기본 정보

이름 Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
공식 URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
설명 Makes the text/label of focused links copyable. Also via contextmenu.
파일 크기 8.87 KB
설치 횟수 40
현재 버전 1.9
최근 업데이트 2022-09-25
출시 날짜 2017-10-16
개발자 Rudie Dirkx
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/rudiedirkx/copyables-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copyables",
    "version": "1.9",
    "manifest_version": 3,
    "description": "Makes the text\/label of focused links copyable. Also via contextmenu.",
    "icons": {
        "128": "images\/logo_128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "copyables.sw.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "copyables.content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}