One Browser Agent

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

Was ist One Browser Agent?

One Browser Agent ist eine Chrome-Erweiterung, die von Hari Krishna Galla entwickelt wurde, und ihr Hauptmerkmal ist "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton".

Erweiterungsscreenshots

screenshot
screenshot

One Browser Agent-Erweiterungs-CRX-Datei herunterladen

Laden Sie One Browser Agent-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name One Browser Agent One Browser Agent
ID kobbebjdlkjcdbnnonblhfofcajfkigj
Offizielle URL https://chromewebstore.google.com/detail/one-browser-agent/kobbebjdlkjcdbnnonblhfofcajfkigj
Beschreibung This agent monitors the browser and captures the login forms and send them to One Key Applicaiton
Dateigröße 65.96 KB
Installationsanzahl 2,522
Aktuelle Version 1.0
Letztes Update 2016-06-13
Veröffentlichungsdatum 2016-06-12
Bewertung 4.70/5 Insgesamt 10 Bewertungen
Entwickler Hari Krishna Galla
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}