One Browser Agent

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

O que é One Browser Agent?

One Browser Agent é uma extensão do Chrome desenvolvida por Hari Krishna Galla, e sua principal característica é "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão One Browser Agent

Baixe arquivos de extensão One Browser Agent no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome One Browser Agent One Browser Agent
ID kobbebjdlkjcdbnnonblhfofcajfkigj
URL Oficial https://chromewebstore.google.com/detail/one-browser-agent/kobbebjdlkjcdbnnonblhfofcajfkigj
Descrição This agent monitors the browser and captures the login forms and send them to One Key Applicaiton
Tamanho do Arquivo 65.96 KB
Contagem de Instalações 2,522
Versão Atual 1.0
Última Atualização 2016-06-13
Data de Publicação 2016-06-12
Classificação 4.70/5 Total de 10 Avaliações
Desenvolvedor Hari Krishna Galla
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}