Clipboard Inserter

A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY

Clipboard Inserter란 무엇입니까?

Clipboard Inserter은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This addon, when turned on in a tab monitors your system clipboard and inserts its contents into the page whenever they change. You can customize tag name of the wrapping element, and chose the parent for inserted elements using a css selector in app options.

In order for this extension to work on local files (the file:// protocol) you need to change the "Allow access to file URLs" setting in the extension details.

Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY                    

확장 프로그램 기본 정보

이름 Clipboard Inserter Clipboard Inserter
ID deahejllghicakhplliloeheabddjajm
공식 URL https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm
설명 A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
파일 크기 10.28 KB
설치 횟수 10,000
현재 버전 0.3.2
최근 업데이트 2018-12-06
출시 날짜 2018-12-06
평점 4.50/5 총 12 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kmltml/clipboard-inserter
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard Inserter",
    "version": "0.3.2",
    "description": "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY",
    "icons": [],
    "applications": {
        "gecko": {
            "id": "@clipboard-inserter"
        }
    },
    "permissions": [
        "activeTab",
        "clipboardRead",
        "storage",
        "file:\/\/*\/*"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icon\/icon16.png",
            "32": "icon\/icon32.png",
            "64": "icon\/icon64.png"
        },
        "default_title": "Toggle clipboard inserter"
    },
    "background": {
        "page": "bg\/index.html"
    },
    "options_ui": {
        "page": "options.html"
    }
}