Easy Clipboard

Easy Clipboard allows you to quickly copy and paste text, urls and more, and store them safely in your browser for future use.

Easy Clipboard란 무엇입니까?

Easy Clipboard은(는) jason xian & christopher jiang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy Clipboard allows you to quickly copy and paste text, urls and more, and store them safely in your browser for future use."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Features include: 
1. Auto copy feature that stores everything you copy directly into Easy Clipboard
2. History stored locally on your browser to be retrieved at any time only by you
3. Search bar in order to efficiently filter through your old copies and text
4. Smart buttons that allow you to copy URL's directly from the search bar to the clipboard

How to Use:

1. Highlight the text you wish to copy.
2. Right click and select "Copy" or press on CTRL+C (Windows) / CMD+C (MAC).
3. Click on the Easy Clipboard extension to view saved text snippets!

Please feel free to contact me if you run into any issues or have any feedback for new features or improvements!

Change-log v2.2.1:

1. Added a helper button for copying URL's directly to the clipboard
2. Moved the "Add to Clipboard" button to be part of the helper buttons
3. Added an "undo" button/text when deleting a single note
4. Minor UI updates and bug fixes

Change-log v2.2.2:
1. Fixed bug where notifications would sometimes timeout too fast

Icon Credits:

Extension Icon made by Smashicons from www.flaticon.com.                    

확장 프로그램 기본 정보

이름 Easy Clipboard Easy Clipboard
ID lkpiolleljimgohflbgekkbeoiajighj
공식 URL https://chromewebstore.google.com/detail/easy-clipboard/lkpiolleljimgohflbgekkbeoiajighj
설명 Easy Clipboard allows you to quickly copy and paste text, urls and more, and store them safely in your browser for future use.
파일 크기 327 KB
설치 횟수 4,561
현재 버전 2.2.2
최근 업데이트 2021-02-15
출시 날짜 2019-09-22
평점 3.73/5 총 15 개의 평점
개발자 jason xian & christopher jiang
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Clipboard",
    "version": "2.2.2",
    "description": "Easy Clipboard allows you to quickly copy and paste text, urls and more, and store them safely in your browser for future use.",
    "icons": {
        "128": ".\/static\/icon128.png",
        "48": ".\/static\/icon48.png",
        "16": ".\/static\/icon16.png"
    },
    "options_page": ".\/pages\/options.html",
    "browser_action": {
        "default_icon": ".\/static\/icon16.png",
        "default_popup": ".\/pages\/popup.html"
    },
    "background": {
        "scripts": [
            ".\/pages\/background.js"
        ],
        "persistant": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/pages\/contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ]
}