Form filler

Autosaves the Form you are working on from Time to Time, automatically.

什么是Form filler?

Form filler是由Roman开发的Chrome扩展程序,该扩展的主要功能是“Autosaves the Form you are working on from Time to Time, automatically.”。

扩展截图

screenshot
screenshot

下载Form filler扩展crx文件

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

扩展使用说明

                                            

扩展基本信息

名称 Form filler Form filler
ID hlloohcadnpmnhcadiednjlajnmbmigb
官方URL https://chrome.google.com/webstore/detail/form-filler/hlloohcadnpmnhcadiednjlajnmbmigb
简介 Autosaves the Form you are working on from Time to Time, automatically.
文件大小 16.91 KB
安装次数 169
当前版本 0.0.5
更新时间 2014-12-31
上架时间 2014-12-31
评分 1.00/5 共2次评分
开发者 Roman
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form filler",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Autosaves the Form you are working on from Time to Time, automatically.",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "form filler",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/page.js"
            ],
            "css": [
                "styles\/animate.css",
                "styles\/icon.css",
                "styles\/input.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/icon-38.png",
        "images\/delete.png"
    ]
}