Copy Fields

Copy and paste form fields to another page

Copy Fields là gì?

Copy Fields là một tiện ích mở rộng Chrome được phát triển bởi Masudur Rahman, và tính năng chính của nó là "Copy and paste form fields to another page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

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

Tải xuống các tệp mở rộng Copy Fields 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

                        Copy Fields from right click menu allow you to paste the field values to another page’s form. It will match field name first, if it doesn’t find the field name matched, then will paste by ascending ordered. 

Right click on anywhere in the page or input field on one form and use the Copy Fields item in the menu.

Having two form fields that are basically identical will let you copy and paste fields smoothly.

Cheers!                    

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

Tên Copy Fields Copy Fields
ID moondabdgifkjaegjhpnpapcmhhbnemj
URL Chính Thức https://chrome.google.com/webstore/detail/copy-fields/moondabdgifkjaegjhpnpapcmhhbnemj
Mô tả Copy and paste form fields to another page
Kích Thước Tệp 24.53 KB
Số Lần Cài Đặt 320
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2019-06-11
Ngày Phát Hành 2019-06-11
Đánh Giá 1.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Masudur Rahman
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Fields",
    "short_name": "copy fields",
    "version": "0.0.0.1",
    "description": "Copy and paste form fields to another page",
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "css": [
                "css\/copy_style.css"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/copy_16x16.png",
        "32": "images\/copy_32x32.png",
        "48": "images\/copy_48x48.png",
        "128": "images\/copy_128x128.png"
    },
    "manifest_version": 2
}