Copy & Paste

The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…

Copy & Paste란 무엇입니까?

Copy & Paste은(는) gal.bogdan2015에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them.

Save the data you need with one click by simply copying it.

Just use Ctrl+c.                    

확장 프로그램 기본 정보

이름 Copy & Paste Copy & Paste
ID oijiikmgkljldpbpddpmhiblpgkciobn
공식 URL https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn
설명 The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
파일 크기 81.47 KB
설치 횟수 889
현재 버전 1.0
최근 업데이트 2020-06-29
출시 날짜 2020-06-28
개발자 gal.bogdan2015
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy & Paste",
    "version": "1.0",
    "icons": {
        "32": "img\/logo32.png",
        "48": "img\/logo48.png"
    },
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "*:\/\/fonts.googleapis.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.2.1.min.js",
            "js\/libs\/safeResponse.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/oncopy.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Copy & Paste",
        "default_icon": "img\/logo64.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}