Enable Copy/Paste

Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.

Enable Copy/Paste란 무엇입니까?

Enable Copy/Paste은(는) dominicfallows에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it."입니다.

확장 프로그램 스크린샷

screenshot

Enable Copy/Paste 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This simple extension enables you to use things like complex passwords and paste them directly into password fields on sites that prevent this needlessly.                    

확장 프로그램 기본 정보

이름 Enable Copy/Paste Enable Copy/Paste
ID leghnagnephbfcencnbonkbdimeokhem
공식 URL https://chromewebstore.google.com/detail/enable-copypaste/leghnagnephbfcencnbonkbdimeokhem
설명 Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.
파일 크기 12.09 KB
설치 횟수 2,230
현재 버전 1.0
최근 업데이트 2021-11-28
출시 날짜 2021-11-27
개발자 dominicfallows
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dominicfallows/enable-copy-paste-chrome-extension
도움말 페이지 URL https://github.com/dominicfallows/enable-copy-paste-chrome-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable Copy\/Paste",
    "description": "Enable copy (CTRL+C or CMD+C) \/ paste (CTRL+P or CMD+P) on websites that needlessly block it.",
    "version": "1.0",
    "author": "Dominic Fallows",
    "homepage_url": "https:\/\/github.com\/dominicfallows\/enable-copy-paste-chrome-extension",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle",
            "match_about_blank": false,
            "all_frames": true
        }
    ],
    "action": {
        "default_title": "Enable copy (CTRL+C or CMD+C) \/ paste (CTRL+P or CMD+P) on websites that needlessly block it",
        "default_icon": {
            "16": "\/icons\/icon16.png",
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "128": "\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    }
}