Clipboard

Store copy items to Clipboard to be retrieved at a lather point

Clipboard란 무엇입니까?

Clipboard은(는) http://massinflux.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Store copy items to Clipboard to be retrieved at a lather point"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Store copy items to Clipboard to be retrieved at a lather point

To use, make a selection and copy it like you would usually do.
Upon right click, you will notice a new menu item called "Clipboard" here the recent copied items will be stored.

The menu is split into two "virtual" sections. The Primary area is used for most used copy selections. This menu needs to be created manually from the extension popup
Click on a sub menu button to copy the selected text to clipboard then click on the "Paste" button to use the selected text.

The recent copies can also be found by clicking on the top menu "Clipboard" icon, where they can be removed and moved around between Primary and Secondary menus

v 1.0.1
 -- improved popup options

v 1.0.2
 -- bug fixes

v 1.0.0
 -- initial release

I made this extension for my own needs, there will be bugs                    

확장 프로그램 기본 정보

이름 Clipboard Clipboard
ID fkbcnppplppaciohjpfecaaoodkimhli
공식 URL https://chrome.google.com/webstore/detail/clipboard/fkbcnppplppaciohjpfecaaoodkimhli
설명 Store copy items to Clipboard to be retrieved at a lather point
파일 크기 116 KB
설치 횟수 7,000
현재 버전 1.0.2
최근 업데이트 2019-09-21
출시 날짜 2019-09-21
평점 4.00/5 총 7 개의 평점
개발자 http://massinflux.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://massinfluix.com
개인정보 보호 정책 페이지 URL http://massinflux.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clipboard",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Store copy items to Clipboard to be retrieved at a lather point",
    "homepage_url": "https:\/\/massinflux.com",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/inject\/jquery.min.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Clipboard",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "clipboardRead",
        "clipboardWrite",
        "http:\/\/*\/*, https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/jquery.min.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}