Simple Plain Text Copy

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

Qu'est-ce que Simple Plain Text Copy ?

Simple Plain Text Copy est une extension Chrome développée par SimpleTools.nl, et sa fonction principale est "Easily copy the selected text without formatting to the clipboard via right-click menu.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Simple Plain Text Copy

Téléchargez les fichiers d'extension Simple Plain Text Copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Simple Plain Text Copy Simple Plain Text Copy
ID plmcamaccbekbempmgeihfckecaoglog
URL Officiel https://chromewebstore.google.com/detail/simple-plain-text-copy/plmcamaccbekbempmgeihfckecaoglog
Description Easily copy the selected text without formatting to the clipboard via right-click menu.
Taille du Fichier 799 KB
Nombre d'Installations 168
Version Actuelle 1.0.2
Dernière Mise à Jour 2019-12-03
Date de Publication 2019-11-28
Développeur SimpleTools.nl
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.simpletools.nl/
URL de la Page de Politique de Confidentialité https://www.simpletools.nl/privacy.php
Langues Prises en Charge 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"
}