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
公式URL 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
Eメール [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
}