smartfiller-chrome

Learns as you fill forms, you will never have to type the same thing twice.

¿Qué es smartfiller-chrome?

smartfiller-chrome es una extensión de Chrome desarrollada por pablotomasborda, y su función principal es "Learns as you fill forms, you will never have to type the same thing twice.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión smartfiller-chrome

Descarga archivos de extensión smartfiller-chrome 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

                        Learns as you fill forms, you will never have to type the same thing twice.
Works in your local browser memory, no server no cloud no accounts, no
payments, no subscription, and not filling the information in the form
filler. 
You are the only owner of the information.                    

Información Básica de la Extensión

Nombre smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
URL Oficial https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Descripción Learns as you fill forms, you will never have to type the same thing twice.
Tamaño del Archivo 57.55 KB
Cantidad de Instalaciones 117
Versión Actual 1.1
Última Actualización 2018-03-13
Fecha de Publicación 2018-03-13
Calificación 2.33/5 Total de 3 Calificaciones
Desarrollador pablotomasborda
Tipo de Pago free
Sitio Web de la Extensión https://github.com/PabloBorda/smartfiller-chrome
URL de la Página de Ayuda https://github.com/PabloBorda/smartfiller-chrome
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "smartfiller-chrome",
    "description": "Learns as you fill forms, you will never have to type the same thing twice.",
    "version": "1.1",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "main.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "form.png",
        "default_popup": "background.html"
    }
}