Clipboard Checker for Chrome

Keep your clipboard safe from malicious javascript insertions.

Clipboard Checker for Chrome란 무엇입니까?

Clipboard Checker for Chrome은(는) https://studiobrightside.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep your clipboard safe from malicious javascript insertions."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Clipboard Checker for Chrome is a set it and forget it Google Chrome extension. 

Keep your clipboard safe from malicious javascript insertions.

It will scan and check any text you copy in your browser to determine if malicious content has been injected into your clipboard. Did the website add contents you didn’t know about? The extension will notify you instantly.

This extension checks if webpages tinker with your clipboard. Is the contents of your clipboard actually what you expect it to be? When an inconsistency between your clipboard, and the text you've selected, is found, you'll receive a notification. 

Simple as that.

---

🔧 Latest bugfixes (v1.8.0)

•  Copying multiple snippets resulted in multiple popups overlaying eachother. Now, only one popup is shown.
•  When copying from a rich text editor field (Google drive, TinyMCE, code formatted editors, etc.) false positives occurred.

💻 Open-source

This extension is open-source. Check the Github for the code or to contribute: https://github.com/StudioBrightside/clipboardchecker                    

확장 프로그램 기본 정보

이름 Clipboard Checker for Chrome Clipboard Checker for Chrome
ID hnbgpklbpfklicackgnbbmifjchmppdb
공식 URL https://chromewebstore.google.com/detail/clipboard-checker-for-chr/hnbgpklbpfklicackgnbbmifjchmppdb
설명 Keep your clipboard safe from malicious javascript insertions.
파일 크기 63.36 KB
설치 횟수 283
현재 버전 0.1.8
최근 업데이트 2021-01-30
출시 날짜 2021-01-19
평점 3.40/5 총 5 개의 평점
개발자 https://studiobrightside.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://clipboardchecker.studiobrightside.io
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard Checker for Chrome",
    "version": "0.1.8",
    "description": "Keep your clipboard safe from malicious javascript insertions.",
    "permissions": [
        "clipboardRead"
    ],
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "lib\/notify.js",
                "content.js"
            ],
            "css": [
                "lib\/notify.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/*"
    ]
}