Simple Plain Text Copy

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

Was ist Simple Plain Text Copy?

Simple Plain Text Copy ist eine Chrome-Erweiterung, die von SimpleTools.nl entwickelt wurde, und ihr Hauptmerkmal ist "Easily copy the selected text without formatting to the clipboard via right-click menu.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Simple Plain Text Copy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple Plain Text Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Simple Plain Text Copy Simple Plain Text Copy
ID plmcamaccbekbempmgeihfckecaoglog
Offizielle URL https://chromewebstore.google.com/detail/simple-plain-text-copy/plmcamaccbekbempmgeihfckecaoglog
Beschreibung Easily copy the selected text without formatting to the clipboard via right-click menu.
Dateigröße 799 KB
Installationsanzahl 168
Aktuelle Version 1.0.2
Letztes Update 2019-12-03
Veröffentlichungsdatum 2019-11-28
Entwickler SimpleTools.nl
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.simpletools.nl/
URL der Datenschutzrichtlinien-Seite https://www.simpletools.nl/privacy.php
Unterstützte Sprachen 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"
}