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
官方網址 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"
        }
    ]
}