Copy Paste Pro

Enable Copy , Paste , Select Text , Right Click On Websites

Copy Paste Pro란 무엇입니까?

Copy Paste Pro은(는) webhtg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable Copy , Paste , Select Text , Right Click On Websites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        -------  NOTE   ---------

---- MAKE SURE TO RELOAD THE WEBPAGE AFTER INSTALLING THIS EXTENSION .

---- Since the extension needs to know the active tabs , so the basic permission it requires is "tabs" . But Chrome will label it as  "can read and change all your data on websites you visit " while asking for the permission .This extension does not track or use your browsing history in any ways.The only information it needs is the active states of the tabs. If you have any doubt regarding the same you can always analyze the code of this extension on github .


Copy Paste Pro is a solution for websites that block Copy , Paste , Select Text and Right clicks .


- This extension works separately for each tab . 
- Clicking on the extension icon will enable/disable it . 
- The extension gets disabled on page reload .
- Check the status enabled (green tick) or disabled (grey tick) of the extension on the toolbar (top right corner).

Youtube - https://www.youtube.com/channel/UCOBsnzqtrS0Hek2a0ceREyQ                    

확장 프로그램 기본 정보

이름 Copy Paste Pro Copy Paste Pro
ID epgndihjbcepnbadocaoofjnfaophlio
공식 URL https://chromewebstore.google.com/detail/copy-paste-pro/epgndihjbcepnbadocaoofjnfaophlio
설명 Enable Copy , Paste , Select Text , Right Click On Websites
파일 크기 20.87 KB
설치 횟수 44,027
현재 버전 0.5.0
최근 업데이트 2022-10-08
출시 날짜 2018-10-22
평점 4.49/5 총 55 개의 평점
개발자 webhtg
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sutuboss/Past-Pro
도움말 페이지 URL https://github.com/sutuboss/
개인정보 보호 정책 페이지 URL https://github.com/sutuboss/Copy-Past-Pro/blob/master/privacy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy Paste Pro",
    "version": "0.5.0",
    "description": "Enable  Copy , Paste , Select Text , Right Click On Websites",
    "author": "Sutu",
    "browser_action": {
        "default_title": "Copy Paste Pro is Disabled",
        "default_icon": "disable.png"
    },
    "icons": {
        "64": "copy_past_pro.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}