Text Snippets

Inserts text into any text field at the click of a button.

Text Snippets là gì?

Text Snippets là một tiện ích mở rộng Chrome được phát triển bởi https://getcrx.cn, và tính năng chính của nó là "Inserts text into any text field at the click of a button.".

Ả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 Text Snippets

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

                        Support:
1.Manage Text
2. Import / Export

Update:
- v2.2.0 fixed: can not add texts in folders.

To my user:
Many users want me to add the ability to store snippets online.
I also think it is necessary, and I also have the technology to develop it.
However, resources such as the service host require some economic cost.
Will you still use it if I charge for it?
How much are you willing to pay for it?
I want to know your thoughts.

--Sigma 2023.2.8 from China                    

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

Tên Text Snippets Text Snippets
ID nfkicldpnflkchmbaliabnplahdhipip
URL Chính Thức https://chromewebstore.google.com/detail/text-snippets/nfkicldpnflkchmbaliabnplahdhipip
Mô tả Inserts text into any text field at the click of a button.
Kích Thước Tệp 210 KB
Số Lần Cài Đặt 8,486
Phiên Bản Hiện Tại 2.2.0
Cập Nhật Lần Cuối 2023-02-09
Ngày Phát Hành 2019-03-08
Đánh Giá 2.95/5 Tổng số 19 Đánh Giá
Nhà Phát Triển https://getcrx.cn
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://github.com/g8up/youDaoDict/wiki/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.2.0",
    "background": {
        "scripts": [
            "js\/store.js",
            "js\/settings.js",
            "js\/menu.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "gfx\/icon_16.png",
        "default_title": "Text Snippets Options"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Inserts text into any text field at the click of a button.",
    "icons": {
        "128": "gfx\/icon_128.png",
        "16": "gfx\/icon_16.png",
        "48": "gfx\/icon_48.png"
    },
    "name": "Text Snippets",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus"
    ],
    "content_security_policy": "object-src 'self'; script-src 'self';",
    "manifest_version": 2
}