MultiClip

MultiClip makes it easy to save multiple items into its clipboard, preview and selectively paste them when needed

MultiClip란 무엇입니까?

MultiClip은(는) Adépòjù Olúwáségun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MultiClip makes it easy to save multiple items into its clipboard, preview and selectively paste them when needed"입니다.

확장 프로그램 스크린샷

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

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

확장 프로그램 사용 설명서

                        It does this by keeping track of changes to the clipboard and retaining a copy of clipped items so as to make them reusable until you decide to discard them.

It has the following added features:
- Clipped Items preview
- Dark Mode
- Multi-language support (six(6) languages)
- Auto delete clips after a specified number of days
- Auto save on copy with (Ctrl+C or Cmd+C)
- Notepad feature (where you type manually written text into the clipboard )
- No Limit (you can create as many clips as desired)                    

확장 프로그램 기본 정보

이름 MultiClip MultiClip
ID kgifojlpdkhneaaefefmhpijbnmmdpeb
공식 URL https://chromewebstore.google.com/detail/multiclip/kgifojlpdkhneaaefefmhpijbnmmdpeb
설명 MultiClip makes it easy to save multiple items into its clipboard, preview and selectively paste them when needed
파일 크기 89.54 KB
설치 횟수 560
현재 버전 0.52
최근 업데이트 2022-07-15
출시 날짜 2020-07-04
평점 4.50/5 총 8 개의 평점
개발자 Adépòjù Olúwáségun
이메일 [email protected]
결제 유형 free
지원되는 언어 en,fr,ar,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_Name__",
    "description": "__MSG_description__",
    "version": "0.52",
    "author": "Ad\u00e9p\u00f2j\u00f9 Ol\u00faw\u00e1s\u00e9gun",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/Oluwasegun-AA\/MultiClip",
    "background": {
        "service_worker": "public\/src\/background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_icon": {
            "16": "public\/client\/icon.png",
            "32": "public\/client\/icon.png",
            "48": "public\/client\/icon.png",
            "128": "public\/client\/icon.png"
        },
        "default_popup": "public\/client\/popup.html"
    },
    "icons": {
        "16": "public\/client\/icon.png",
        "32": "public\/client\/icon.png",
        "48": "public\/client\/icon.png",
        "128": "public\/client\/icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "public\/src\/contentScript.js"
            ]
        }
    ],
    "offline_enabled": true,
    "commands": {
        "add_clips": {
            "suggested_key": {
                "windows": "Ctrl+C",
                "mac": "Command+C"
            },
            "description": "add copied clips to clipboard"
        }
    }
}