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文件

下载Simple Plain Text Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
}