Code template

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

Code template là gì?

Code template là một tiện ích mở rộng Chrome được phát triển bởi https://apptools.online, và tính năng chính của nó là "This application allows you to copy to the clipboard any pre-prepared code from web.".

Ả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 Code template

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

                        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                    

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

Tên Code template Code template
ID ldkpmbhljmecchaeaibkfohpajjapbmk
URL Chính Thức https://chrome.google.com/webstore/detail/code-template/ldkpmbhljmecchaeaibkfohpajjapbmk
Mô tả This application allows you to copy to the clipboard any pre-prepared code from web.
Kích Thước Tệp 189 KB
Số Lần Cài Đặt 301
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2019-11-17
Ngày Phát Hành 2019-11-12
Nhà Phát Triển https://apptools.online
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",
    "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"
            ]
        }
    ]
}