Copy Trim

This extension remove white spaces before and after the copy

什么是Copy Trim?

Copy Trim是由galvish开发的Chrome扩展程序,该扩展的主要功能是“This extension remove white spaces before and after the copy”。

下载Copy Trim扩展crx文件

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

扩展使用说明

                                            

扩展基本信息

名称 Copy Trim Copy Trim
ID jgmiikpncidgpcmbpafdkjkfamjnilln
官方URL https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln
简介 This extension remove white spaces before and after the copy
文件大小 8.05 KB
安装次数 128
当前版本 0.0.3
更新时间 2017-06-26
上架时间 2017-06-26
评分 5.00/5 共3次评分
开发者 galvish
付费类型 free
扩展官网 https://github.com/GalVishnevsky/CopyTrim
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Trim",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "This extension remove white spaces before and after the copy",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "src\/bg\/popup.html"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/oncopy.js"
            ]
        }
    ]
}