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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में One Browser Agent एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}