Text Snippets

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

¿Qué es Text Snippets?

Text Snippets es una extensión de Chrome desarrollada por https://getcrx.cn, y su función principal es "Inserts text into any text field at the click of a button.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Text Snippets

Descarga archivos de extensión Text Snippets en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Text Snippets Text Snippets
ID nfkicldpnflkchmbaliabnplahdhipip
URL Oficial https://chromewebstore.google.com/detail/text-snippets/nfkicldpnflkchmbaliabnplahdhipip
Descripción Inserts text into any text field at the click of a button.
Tamaño del Archivo 210 KB
Cantidad de Instalaciones 8,486
Versión Actual 2.2.0
Última Actualización 2023-02-09
Fecha de Publicación 2019-03-08
Calificación 2.95/5 Total de 19 Calificaciones
Desarrollador https://getcrx.cn
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://github.com/g8up/youDaoDict/wiki/privacy
Idiomas Soportados 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
}