Copy Fields

Copy and paste form fields to another page

什麼是Copy Fields?

Copy Fields是由Masudur Rahman開發的Chrome擴展程式,該擴展的主要功能是“Copy and paste form fields to another page”。

擴展截圖

screenshot

下載Copy Fields擴展crx文件

下載Copy Fields擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Copy Fields Copy Fields
ID moondabdgifkjaegjhpnpapcmhhbnemj
官方網址 https://chrome.google.com/webstore/detail/copy-fields/moondabdgifkjaegjhpnpapcmhhbnemj
簡介 Copy and paste form fields to another page
檔案大小 24.53 KB
安裝次數 320
目前版本 0.0.0.1
更新時間 2019-06-11
上架時間 2019-06-11
評分 1.83/5 共 6 次評分
開發者 Masudur Rahman
電子郵箱 [email protected]
付費類型 free
支援的語言 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
}