EZ Copy Plaintext

Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.

Was ist EZ Copy Plaintext?

EZ Copy Plaintext ist eine Chrome-Erweiterung, die von Josh entwickelt wurde, und ihr Hauptmerkmal ist "Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.".

Erweiterungsscreenshots

screenshot

EZ Copy Plaintext-Erweiterungs-CRX-Datei herunterladen

Laden Sie EZ Copy Plaintext-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

                        Automatically removes formatting from your clipboard when you use normal copy paste [Ctrl+c].  If you need to keep the formatting, you can toggle it on and off by right clicking something you've selected/highlighted and pressing 'Get format next copy'.  On the next copy you do, it will keep the formatting. Then it will reset back to the default plaintext setting for future copying.

simple and robust.

NOTE:
The extension will not be active on tabs/windows that were already open prior to the installation.  Try refreshing the tabs or open a new one to test it out.                    

Grundlegende Informationen zur Erweiterung

Name EZ Copy Plaintext EZ Copy Plaintext
ID khgahhiehdlgmaoghjoegkgbfcdodnhb
Offizielle URL https://chromewebstore.google.com/detail/ez-copy-plaintext/khgahhiehdlgmaoghjoegkgbfcdodnhb
Beschreibung Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.
Dateigröße 6.47 KB
Installationsanzahl 780
Aktuelle Version 1.1.5
Letztes Update 2013-03-03
Veröffentlichungsdatum 2013-03-02
Bewertung 2.54/5 Insgesamt 26 Bewertungen
Entwickler Josh
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EZ Copy Plaintext",
    "description": "Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.",
    "version": "1.1.5",
    "manifest_version": 2,
    "incognito": "split",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}