Text Snippets

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

Text Snippetsคืออะไร?

Text Snippets เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://getcrx.cn และคุณลักษณะหลักของมันคือ "Inserts text into any text field at the click of a button."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Text Snippets

ดาวน์โหลดไฟล์ส่วนขยาย Text Snippets ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Text Snippets Text Snippets
ID nfkicldpnflkchmbaliabnplahdhipip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/text-snippets/nfkicldpnflkchmbaliabnplahdhipip
คำอธิบาย Inserts text into any text field at the click of a button.
ขนาดไฟล์ 210 KB
จำนวนการติดตั้ง 8,486
เวอร์ชันปัจจุบัน 2.2.0
อัปเดตครั้งล่าสุด 2023-02-09
วันที่เผยแพร่ 2019-03-08
คะแนน 2.95/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา https://getcrx.cn
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://github.com/g8up/youDaoDict/wiki/privacy
ภาษาที่รองรับ 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
}