smartfiller-chrome

Learns as you fill forms, you will never have to type the same thing twice.

什么是smartfiller-chrome?

smartfiller-chrome是由pablotomasborda开发的Chrome扩展程序,该扩展的主要功能是“Learns as you fill forms, you will never have to type the same thing twice.”。

扩展截图

screenshot

下载smartfiller-chrome扩展crx文件

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

扩展使用说明

                        Learns as you fill forms, you will never have to type the same thing twice.
Works in your local browser memory, no server no cloud no accounts, no
payments, no subscription, and not filling the information in the form
filler. 
You are the only owner of the information.                    

扩展基本信息

名称 smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
官方URL https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
简介 Learns as you fill forms, you will never have to type the same thing twice.
文件大小 57.55 KB
安装次数 117
当前版本 1.1
更新时间 2018-03-13
上架时间 2018-03-13
评分 2.33/5 共3次评分
开发者 pablotomasborda
付费类型 free
扩展官网 https://github.com/PabloBorda/smartfiller-chrome
帮助页面URL https://github.com/PabloBorda/smartfiller-chrome
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "smartfiller-chrome",
    "description": "Learns as you fill forms, you will never have to type the same thing twice.",
    "version": "1.1",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "main.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "form.png",
        "default_popup": "background.html"
    }
}