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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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