Allow Copy/Paste

An extension to permit copy and paste on sites that block this feature.

Allow Copy/Paste란 무엇입니까?

Allow Copy/Paste은(는) Fraser Benjamin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to permit copy and paste on sites that block this feature."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Some websites block your ability to copy and paste text and content from them, this extension works to prevent these restrictions from being added.

There are two features to attempt to remove the restrictions available with this extension. You can navigate to the page you'd like to copy/paste from and click the extension icon in Chrome and then "Allow Copy/Paste". Generally this should work for most sites and allow you to carry on like normal. The extension will also store your preferences so you'll only need to do this once for each site.

However, if that doesn't work you can also open Chrome Developer Tools and select the "Allow Copy/Paste" tab which will then give you a button to reload the page and attempt to prevent the blocking script from being added. https://developer.chrome.com/docs/devtools/open                    

확장 프로그램 기본 정보

이름 Allow Copy/Paste Allow Copy/Paste
ID ecfmkkhjjhjkdbnegnnkmbnnajmkgcfe
공식 URL https://chromewebstore.google.com/detail/allow-copypaste/ecfmkkhjjhjkdbnegnnkmbnnajmkgcfe
설명 An extension to permit copy and paste on sites that block this feature.
파일 크기 29.9 KB
설치 횟수 3,367
현재 버전 1.1.0
최근 업데이트 2022-03-25
출시 날짜 2022-03-21
평점 5.00/5 총 2 개의 평점
개발자 Fraser Benjamin
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Allow Copy\/Paste",
    "description": "An extension to permit copy and paste on sites that block this feature.",
    "version": "1.1.0",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "devtools_page": "devtools.html",
    "icons": {
        "16": "icons\/allow-copy-paste-logo-16.png",
        "48": "icons\/allow-copy-paste-logo-48.png",
        "128": "icons\/allow-copy-paste-logo-128.png",
        "256": "icons\/allow-copy-paste-logo-256.png",
        "512": "icons\/allow-copy-paste-logo-512.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/allow-copy-paste-logo-16.png",
            "48": "icons\/allow-copy-paste-logo-48.png",
            "128": "icons\/allow-copy-paste-logo-128.png",
            "256": "icons\/allow-copy-paste-logo-256.png",
            "512": "icons\/allow-copy-paste-logo-512.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ]
}