Code template

This application allows you to copy to the clipboard any pre-prepared code from web.

Code template란 무엇입니까?

Code template은(는) https://apptools.online에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This application allows you to copy to the clipboard any pre-prepared code from web."입니다.

확장 프로그램 스크린샷

screenshot

Code template 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This application allows you to:
1) copy to the clipboard any pre-prepared text on your link.

What for it is necessary? For example, in your activity, you have to constantly use the same pieces of text (or code). Of course, in this respect it is convenient to have a cloud storage that allows you to structure templates with text thematically and copy them to the clipboard one mouse click.

Another example: Your company already has certain frequently repeated operations, and you would like your programmers, managers or other personnel to use corporate templates. In this case, you will need to make a template file and give your employees a link to them

2) Also, the application allows you to fill out forms with values ​​from template-form files.

This is necessary if you often fill out web forms, such as reports, with repeated data.

It can also be useful if you have some kind of corporate account, under which your employees use some kind of service                    

확장 프로그램 기본 정보

이름 Code template Code template
ID ldkpmbhljmecchaeaibkfohpajjapbmk
공식 URL https://chrome.google.com/webstore/detail/code-template/ldkpmbhljmecchaeaibkfohpajjapbmk
설명 This application allows you to copy to the clipboard any pre-prepared code from web.
파일 크기 189 KB
설치 횟수 301
현재 버전 0.3.2
최근 업데이트 2019-11-17
출시 날짜 2019-11-12
개발자 https://apptools.online
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code template",
    "description": "This application allows you to copy to the clipboard any pre-prepared code from web.",
    "version": "0.3.2",
    "icons": {
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "128.png",
        "default_title": "Code Template",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-3.1.1.min.js",
                "js\/content.js"
            ]
        }
    ]
}