Copy Trim

This extension remove white spaces before and after the copy

Copy Trim là gì?

Copy Trim là một tiện ích mở rộng Chrome được phát triển bởi galvish, và tính năng chính của nó là "This extension remove white spaces before and after the copy".

Tải xuống tệp CRX của tiện ích mở rộng Copy Trim

Tải xuống các tệp mở rộng Copy Trim dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy Trim Copy Trim
ID jgmiikpncidgpcmbpafdkjkfamjnilln
URL Chính Thức https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln
Mô tả This extension remove white spaces before and after the copy
Kích Thước Tệp 8.05 KB
Số Lần Cài Đặt 128
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2017-06-26
Ngày Phát Hành 2017-06-26
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển galvish
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/GalVishnevsky/CopyTrim
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}