QuickText

QuickText allows you to simply paste predefined texts into text fields.

QuickText là gì?

QuickText là một tiện ích mở rộng Chrome được phát triển bởi https://www.pixiz.com, và tính năng chính của nó là "QuickText allows you to simply paste predefined texts into text fields.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng QuickText

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

                        QuickText allows you to simply paste predefined texts into text fields.                    

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

Tên QuickText QuickText
ID neflkikppleikkghgjheajjpdjaihlch
URL Chính Thức https://chromewebstore.google.com/detail/quicktext/neflkikppleikkghgjheajjpdjaihlch
Mô tả QuickText allows you to simply paste predefined texts into text fields.
Kích Thước Tệp 27.11 KB
Số Lần Cài Đặt 1,181
Phiên Bản Hiện Tại 0.8
Cập Nhật Lần Cuối 2020-05-04
Ngày Phát Hành 2020-05-03
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://www.pixiz.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickText",
    "short_name": "QuickText",
    "version": "0.8",
    "author": "Dady",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}