Fill-it

Fill HTML form with fake values.

什麼是Fill-it?

Fill-it是由Florian Knibbe開發的Chrome擴展程式,該擴展的主要功能是“Fill HTML form with fake values.”。

擴展截圖

screenshot
screenshot

下載Fill-it擴展crx文件

下載Fill-it擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Fill-it is totally open source : https://github.com/FlorianKnibbe/fill-it

Fill-it is Google Chrome extension design to fill HTML form with fake values in order to saving time when it comes to fill forms. You can customize and add filter/target pattern and generated values pattern in parameters.

**WARNING** Please note that **default parameters are for French users** but you can customize all of them as you want/need.

* Target fields on : label, placeholder, name and type
* Auto fill respect attributs : min, max, minlength, maxlength and pattern

## COMMANDS ##

CTRL + DBLCLICK => Auto fill one field

or click on one field then...

CTRL + SHIFT + A => Auto fill all fields in page
CTRL + SHIFT + F => Auto fill form (restricted area) in page                    

擴展基本資訊

名稱 Fill-it Fill-it
ID fdkaefddgpceppjokdiffahhjgcaflke
官方網址 https://chromewebstore.google.com/detail/fill-it/fdkaefddgpceppjokdiffahhjgcaflke
簡介 Fill HTML form with fake values.
檔案大小 70.64 KB
安裝次數 281
目前版本 1.0.2
更新時間 2018-09-30
上架時間 2018-09-30
開發者 Florian Knibbe
付費類型 free
擴展官網 https://github.com/FlorianKnibbe/fill-it
說明頁面URL https://github.com/FlorianKnibbe/fill-it
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fill-it",
    "version": "1.0.2",
    "short_name": "Fillit",
    "description": "Fill HTML form with fake values.",
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "24": "img\/icon24.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        },
        "default_title": "Open source Form Filler by Florian Knibbe",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "24": "img\/icon24.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "assets\/jquery.js",
                "assets\/randexp.js",
                "domManipulator.js"
            ]
        }
    ],
    "manifest_version": 2
}