Allow Select And Copy

Allow selection and copy, right click and paste on any webpage with copy protection

Allow Select And Copy란 무엇입니까?

Allow Select And Copy은(는) dimavanguard에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow selection and copy, right click and paste on any webpage with copy protection"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Allow Select And Copy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Sometimes you enter a website where is some usefull information, but you can not select it and/or copy. This extension make it possible! Moreover, extension will work automatically after few seconds when you enter the website.

************ULTRA MODE************
Press ALT + SHIFT + A to enter ULTRA MODE
On some sites will be necessary to enter ULTRA MODE in order to select text.
************ULTRA MODE************                    

확장 프로그램 기본 정보

이름 Allow Select And Copy Allow Select And Copy
ID lamaakaemgdclpnfbofmhpkanfnojjch
공식 URL https://chromewebstore.google.com/detail/allow-select-and-copy/lamaakaemgdclpnfbofmhpkanfnojjch
설명 Allow selection and copy, right click and paste on any webpage with copy protection
파일 크기 14.97 KB
설치 횟수 163,666
현재 버전 3.1.5
최근 업데이트 2018-01-06
출시 날짜 2018-01-06
평점 3.79/5 총 246 개의 평점
개발자 dimavanguard
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Allow Select And Copy",
    "short_name": "Copy Unblock",
    "description": "Allow selection and copy, right click and paste on any webpage with copy protection",
    "version": "3.1.5",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html",
        "default_title": "ALT + SHIFT + A to enter ULTRA COPY MODE.\nClick to open menu"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}