One Browser Agent

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

Hvad er One Browser Agent?

One Browser Agent er en Chrome-udvidelse udviklet af Hari Krishna Galla, og dens hovedfunktion er "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton".

Udvidelsesskærmbilleder

screenshot
screenshot

Download One Browser Agent-udvidelses-CRX-fil

Download One Browser Agent-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn One Browser Agent One Browser Agent
ID kobbebjdlkjcdbnnonblhfofcajfkigj
Officiel URL https://chromewebstore.google.com/detail/one-browser-agent/kobbebjdlkjcdbnnonblhfofcajfkigj
Beskrivelse This agent monitors the browser and captures the login forms and send them to One Key Applicaiton
Filstørrelse 65.96 KB
Antal Installationer 2,522
Nuværende Version 1.0
Senest Opdateret 2016-06-13
Udgivelsesdato 2016-06-12
Bedømmelse 4.70/5 Samlet 10 Bedømmelser
Udvikler Hari Krishna Galla
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}