One Browser Agent

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

Vad är One Browser Agent?

One Browser Agent är en Chrome-tillägg utvecklad av Hari Krishna Galla, och dess huvudfunktion är "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner One Browser Agent-förlängningens CRX-fil

Ladda ner One Browser Agent-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn One Browser Agent One Browser Agent
ID kobbebjdlkjcdbnnonblhfofcajfkigj
Officiell webbadress https://chromewebstore.google.com/detail/one-browser-agent/kobbebjdlkjcdbnnonblhfofcajfkigj
Beskrivning This agent monitors the browser and captures the login forms and send them to One Key Applicaiton
Filstorlek 65.96 KB
Antal Installationer 2,522
Aktuell Version 1.0
Senast Uppdaterad 2016-06-13
Publiceringsdatum 2016-06-12
Betyg 4.70/5 Totalt 10 Betyg
Utvecklare Hari Krishna Galla
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}