One Browser Agent

This agent monitors the browser and captures the login forms and send them to One Key Applicaiton

¿Qué es One Browser Agent?

One Browser Agent es una extensión de Chrome desarrollada por Hari Krishna Galla, y su función principal es "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión One Browser Agent

Descarga archivos de extensión One Browser Agent 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

                        This extension monitors the chrome browsers for login forms and captures the information. But this is dependent on the One Key Password Manager Application for storing and managing the login forms. Please install the One Key Password Manager Application for complete setup.                    

Información Básica de la Extensión

Nombre One Browser Agent One Browser Agent
ID kobbebjdlkjcdbnnonblhfofcajfkigj
URL Oficial https://chromewebstore.google.com/detail/one-browser-agent/kobbebjdlkjcdbnnonblhfofcajfkigj
Descripción This agent monitors the browser and captures the login forms and send them to One Key Applicaiton
Tamaño del Archivo 65.96 KB
Cantidad de Instalaciones 2,522
Versión Actual 1.0
Última Actualización 2016-06-13
Fecha de Publicación 2016-06-12
Calificación 4.70/5 Total de 10 Calificaciones
Desarrollador Hari Krishna Galla
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "One Browser Agent",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton",
    "icons": {
        "16": "images\/logo16.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/aes.js",
            "js\/util.js",
            "js\/agentbackground.js"
        ]
    },
    "permissions": [
        "tabs",
        "",
        "contextMenus",
        "management"
    ],
    "web_accessible_resources": [
        "js\/pageAgent.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-2.2.2.min.js",
                "js\/util.js",
                "js\/htmlutil.js",
                "js\/okagent.js"
            ],
            "run_at": "document_start"
        }
    ]
}