Text Snippets

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

什麼是Text Snippets?

Text Snippets是由https://getcrx.cn開發的Chrome擴展程式,該擴展的主要功能是“Inserts text into any text field at the click of a button.”。

擴展截圖

screenshot

下載Text Snippets擴展crx文件

下載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
官方網址 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
}