One Browser Agent

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

什么是One Browser Agent?

One Browser Agent是由Hari Krishna Galla开发的Chrome扩展程序,该扩展的主要功能是“This agent monitors the browser and captures the login forms and send them to One Key Applicaiton”。

扩展截图

screenshot
screenshot

下载One Browser Agent扩展crx文件

下载One Browser Agent扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 One Browser Agent One Browser Agent
ID kobbebjdlkjcdbnnonblhfofcajfkigj
官方URL https://chromewebstore.google.com/detail/one-browser-agent/kobbebjdlkjcdbnnonblhfofcajfkigj
简介 This agent monitors the browser and captures the login forms and send them to One Key Applicaiton
文件大小 65.96 KB
安装次数 2,522
当前版本 1.0
更新时间 2016-06-13
上架时间 2016-06-12
评分 4.70/5 共10次评分
开发者 Hari Krishna Galla
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    ]
}