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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Hari Krishna Galla, και η κύρια λειτουργία του είναι "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης One Browser Agent

Λήψη αρχείων επέκτασης 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"
        }
    ]
}