Easy Clipboard

Easy clipper!

Easy Clipboard란 무엇입니까?

Easy Clipboard은(는) therewecode에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy clipper!"입니다.

확장 프로그램 스크린샷

Easy Clipboard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Chrome extension lets you paste your text through the right click button. It will save the time for those who frequently have to paste information in certain fields online. This will replace your clipboard and save you a lot of time!

Simply add your common texts in the popup window by clicking on the Easy Clipboard icon on the top right side. Add category, title and text. After you can access it immediately through right click menu option and it will embed the text directly in the text field.

This chrome extension will sync up your data across all your devices that has Chrome on! Just make sure to sign in to your Chrome browser and it will backup the data automatically!                    

확장 프로그램 기본 정보

이름 Easy Clipboard Easy Clipboard
ID ealiflicbcijkeeapfglpcghlcocioic
공식 URL https://chrome.google.com/webstore/detail/easy-clipboard/ealiflicbcijkeeapfglpcghlcocioic
설명 Easy clipper!
파일 크기 22.03 KB
설치 횟수 569
현재 버전 1.1
최근 업데이트 2021-04-06
출시 날짜 2019-01-02
평점 4.50/5 총 6 개의 평점
개발자 therewecode
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Clipboard",
    "version": "1.1",
    "description": "Easy clipper!",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "dbFacade.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}