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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}