Simple Plain Text Copy

Easily copy the selected text without formatting to the clipboard via right-click menu.

Simple Plain Text Copy란 무엇입니까?

Simple Plain Text Copy은(는) SimpleTools.nl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily copy the selected text without formatting to the clipboard via right-click menu."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Simple Plain Text Copy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        1. Visit the page that you want

2. Select the formatted text that you want to copy as plain text

3. You will see "Copy As Plain Text" option in right-click menu

4. It's done. Your text is copied to your clipboard without any formatting

Permission Description
1. Data Access: This allows addon to understand the selected text

2. Clipboard: Your selected text will copied to your clipboard                    

확장 프로그램 기본 정보

이름 Simple Plain Text Copy Simple Plain Text Copy
ID plmcamaccbekbempmgeihfckecaoglog
공식 URL https://chromewebstore.google.com/detail/simple-plain-text-copy/plmcamaccbekbempmgeihfckecaoglog
설명 Easily copy the selected text without formatting to the clipboard via right-click menu.
파일 크기 799 KB
설치 횟수 168
현재 버전 1.0.2
최근 업데이트 2019-12-03
출시 날짜 2019-11-28
개발자 SimpleTools.nl
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.simpletools.nl/
개인정보 보호 정책 페이지 URL https://www.simpletools.nl/privacy.php
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_popup": "copy.html",
        "default_icon": "icons\/exif128.png"
    },
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "icons": {
        "128": "icons\/exif128.png",
        "64": "icons\/exif64.png",
        "32": "icons\/exif32.png",
        "16": "icons\/exif16.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "version": "1.0.2"
}