Credentials Autofill

Enable auto fill credentials

什么是Credentials Autofill?

Credentials Autofill是由Aniketos开发的Chrome扩展程序,该扩展的主要功能是“Enable auto fill credentials”。

扩展截图

screenshot

下载Credentials Autofill扩展crx文件

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

扩展使用说明

                        This extension allows you to save credentials for hosts. Each form input containing "user" or "password" in its name attribute will be filled with these data after focus event on form inputs appropriately.                    

扩展基本信息

名称 Credentials Autofill Credentials Autofill
ID kkifkadkcbpkfngiamhcobgeikpnbnel
官方URL https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel
简介 Enable auto fill credentials
文件大小 160 KB
安装次数 55
当前版本 1.0.0.5
更新时间 2018-10-15
上架时间 2018-10-15
开发者 Aniketos
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Credentials Autofill",
    "version": "1.0.0.5",
    "description": "Enable auto fill credentials",
    "browser_action": {
        "default_icon": "icons\/icon16_disabled.png",
        "default_title": "Auto-fill credentials",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "event_script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery\/jquery-3.2.0.min.js",
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ]
}